summaryrefslogtreecommitdiff
path: root/src/search/bishop_moves.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/search/bishop_moves.c')
-rw-r--r--src/search/bishop_moves.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/search/bishop_moves.c b/src/search/bishop_moves.c
index 29fe3a6..207535e 100644
--- a/src/search/bishop_moves.c
+++ b/src/search/bishop_moves.c
@@ -68,5 +68,10 @@ void get_bishop_moves(moves_t* moves, position_t position) {
friendly_bishops = position.bitboards[BLACK_BISHOP];
}
- __forloop_bishop_moves_gen(moves, friendly_bishops, friendly_pieces, enemy_pieces);
+ __forloop_bishop_moves_gen(
+ moves,
+ friendly_bishops,
+ friendly_pieces,
+ enemy_pieces
+ );
}