mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-19 00:26:33 +08:00
Strip whitespace from beginning of string sent to set_option_value().
It turned out that the input sent to set_option_value() when it is called by set_option() in uci.cpp always started with at least one whitespace. In most cases, this is not a problem, because the majority of UCI options have numeric values. It did, however, cause a problem for UCI options with non-numerical values, like options of type CHECK and COMBO. In particular, changing the value of an option of type CHECK didn't work, because the comparisons with "true" and "false" would always return false. This means that the "Ponder" and "UCI_Chess960" options haven't been working for a while.
This commit is contained in:
@@ -242,6 +242,11 @@ namespace {
|
|||||||
}
|
}
|
||||||
if (token == "value")
|
if (token == "value")
|
||||||
{
|
{
|
||||||
|
// Skip whitespace. There should be a better way to do this, but
|
||||||
|
// I don't know how...
|
||||||
|
while(isspace(uip.get()));
|
||||||
|
uip.unget();
|
||||||
|
|
||||||
getline(uip, token); // reads until end of line
|
getline(uip, token); // reads until end of line
|
||||||
set_option_value(name, token);
|
set_option_value(name, token);
|
||||||
} else
|
} else
|
||||||
|
|||||||
Reference in New Issue
Block a user