Fix incorrect input option

This commit is contained in:
Sergio Vieri
2021-06-14 14:57:57 +08:00
parent c5ed9d1d76
commit a44b1115c4

View File

@@ -767,7 +767,7 @@ namespace Stockfish::Tools
else if (token == "min_depth")
is >> params.search_depth_min;
else if (token == "max_depth")
is >> params.search_depth_min;
is >> params.search_depth_max;
else if (token == "nodes")
is >> params.nodes;
else if (token == "count")