mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-20 09:06:45 +08:00
Complete the renaming in Search::LimitsType
This completes the job started with revision
4124c94583.
No functional change.
Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -204,13 +204,13 @@ namespace {
|
||||
while (is >> token)
|
||||
{
|
||||
if (token == "wtime")
|
||||
is >> limits.times[WHITE];
|
||||
is >> limits.time[WHITE];
|
||||
else if (token == "btime")
|
||||
is >> limits.times[BLACK];
|
||||
is >> limits.time[BLACK];
|
||||
else if (token == "winc")
|
||||
is >> limits.incs[WHITE];
|
||||
is >> limits.inc[WHITE];
|
||||
else if (token == "binc")
|
||||
is >> limits.incs[BLACK];
|
||||
is >> limits.inc[BLACK];
|
||||
else if (token == "movestogo")
|
||||
is >> limits.movestogo;
|
||||
else if (token == "depth")
|
||||
|
||||
Reference in New Issue
Block a user