mirror of
https://github.com/sockspls/badfish
synced 2025-04-30 16:53:09 +00: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:
parent
bdb586ac2b
commit
50f92bed06
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue