summaryrefslogtreecommitdiff
path: root/src/search/bishop_moves.c
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2026-05-26 23:43:55 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2026-05-26 23:43:55 +0530
commitf5c67c1410c1f9af5da99d2ea02192c21f8abc08 (patch)
treea830268b20a1b5bd828c3b88d518140f8e159cae /src/search/bishop_moves.c
parentad32fc54b2869c0bbedcabea6274b0e3732ec893 (diff)
adding move marker
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
+ );
}