mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-19 16:46:30 +08:00
Fix a spurious extra space
This morning it seems there is nothing better to do... Signed-off-by: Marco Costalba <mcostalba@gmail.com>
This commit is contained in:
@@ -147,7 +147,7 @@ Move MovePicker::get_next_move() {
|
||||
movesPicked = numOfMoves = 0;
|
||||
if (killer1 != MOVE_NONE && move_is_legal(pos, killer1, pinned) && !pos.move_is_capture(killer1))
|
||||
moves[numOfMoves++].move = killer1;
|
||||
if (killer2 != MOVE_NONE && move_is_legal(pos, killer2, pinned) && !pos.move_is_capture(killer2) )
|
||||
if (killer2 != MOVE_NONE && move_is_legal(pos, killer2, pinned) && !pos.move_is_capture(killer2))
|
||||
moves[numOfMoves++].move = killer2;
|
||||
break;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user