Skip to content

Commit

Permalink
Fixed double space in 'score cp' output
Browse files Browse the repository at this point in the history
  • Loading branch information
mcthouacbb committed Feb 28, 2024
1 parent d1eefd9 commit 3b02487
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Sirius/src/comm/uci.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ void UCI::reportSearchInfo(const SearchInfo& info) const
}
else
{
std::cout << " cp " << info.score;
std::cout << "cp " << info.score;
}

std::cout << " pv ";
Expand Down

0 comments on commit 3b02487

Please sign in to comment.