mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-20 17:16:33 +08:00
Fix book name is hard coded as book.bin
Instead should be read by the corresponding UCI option "Book File". Bug reported and fixed by Justin Blanchard (Arch Linux) Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -373,7 +373,7 @@ bool think(const Position& pos, bool infinite, bool ponder, int side_to_move,
|
||||
{
|
||||
Move bookMove;
|
||||
if (get_option_value_string("Book File") != OpeningBook.file_name())
|
||||
OpeningBook.open("book.bin");
|
||||
OpeningBook.open(get_option_value_string("Book File"));
|
||||
|
||||
bookMove = OpeningBook.get_move(pos);
|
||||
if (bookMove != MOVE_NONE)
|
||||
|
||||
Reference in New Issue
Block a user