X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fuci.cpp;h=b7127b758153c9fd008563f2f7412a5802ebdfad;hp=f05a114e51993088df0c20cc2b86dda2bbc5436f;hb=cb2111f0b62afec5fd977e1dd4ca5843bd006956;hpb=f6f1d2422303923927c0c088dee1d6df22dc4b98 diff --git a/src/uci.cpp b/src/uci.cpp index f05a114e..b7127b75 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -74,7 +74,7 @@ namespace { while (is >> token && (m = UCI::to_move(pos, token)) != MOVE_NONE) { SetupStates->push(StateInfo()); - pos.do_move(m, SetupStates->top()); + pos.do_move(m, SetupStates->top(), pos.gives_check(m, CheckInfo(pos))); } } @@ -272,9 +272,9 @@ Move UCI::to_move(const Position& pos, string& str) { if (str.length() == 5) // Junior could send promotion piece in uppercase str[4] = char(tolower(str[4])); - for (const ExtMove& ms : MoveList(pos)) - if (str == UCI::move(ms.move, pos.is_chess960())) - return ms.move; + for (const auto& m : MoveList(pos)) + if (str == UCI::move(m, pos.is_chess960())) + return m; return MOVE_NONE; }