1
0
Fork 0

Fix: "Ponder" option has type bool not int

Signed-off-by: Marco Costalba <mcostalba@gmail.com>
sf_2.3.1_base
Marco Costalba 2008-09-18 09:48:56 +01:00
parent 421fd9c3bf
commit 295352d04a
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ void think(const Position &pos, bool infinite, bool ponder, int time,
TT.set_size(get_option_value_int("Hash"));
if(button_was_pressed("Clear Hash"))
TT.clear();
PonderingEnabled = get_option_value_int("Ponder");
PonderingEnabled = get_option_value_bool("Ponder");
MultiPV = get_option_value_int("MultiPV");
CheckExtension[1] = Depth(get_option_value_int("Check Extension (PV nodes)"));