X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fbook.cpp;h=1e4c9cc088aa277f998e70889cc285e8da3e20ab;hp=0c72d8e80d862d35b9f17aafc5d3f14cf7321a4c;hb=14dbeb22dd04f0954322a58c26833506fb4532a9;hpb=9e4befe3f1ea324bece88aee2e97b38659411c52 diff --git a/src/book.cpp b/src/book.cpp index 0c72d8e8..1e4c9cc0 100644 --- a/src/book.cpp +++ b/src/book.cpp @@ -390,7 +390,7 @@ void Book::close() { /// Book::file_name() returns the file name of the currently active book, /// or the empty string if no book is open. -const string Book::file_name() const { +const string Book::file_name() { // Not const to compile on HP-UX 11.X return is_open() ? fileName : ""; } @@ -430,7 +430,7 @@ Move Book::get_move(const Position& pos) { return MOVE_NONE; MoveStack mlist[256]; - MoveStack* last = generate_legal_moves(pos, mlist); + MoveStack* last = generate_moves(pos, mlist); for (MoveStack* cur = mlist; cur != last; cur++) if ((int(cur->move) & 07777) == bookMove) return cur->move;