diff options
| author | Aargh Rai <aargh.rai+git@gmail.com> | 2026-05-26 23:43:55 +0530 |
|---|---|---|
| committer | Aargh Rai <aargh.rai+git@gmail.com> | 2026-05-26 23:43:55 +0530 |
| commit | f5c67c1410c1f9af5da99d2ea02192c21f8abc08 (patch) | |
| tree | a830268b20a1b5bd828c3b88d518140f8e159cae /src/search/rook_moves.c | |
| parent | ad32fc54b2869c0bbedcabea6274b0e3732ec893 (diff) | |
adding move marker
Diffstat (limited to 'src/search/rook_moves.c')
| -rw-r--r-- | src/search/rook_moves.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/search/rook_moves.c b/src/search/rook_moves.c index 778c6a1..3e25526 100644 --- a/src/search/rook_moves.c +++ b/src/search/rook_moves.c @@ -68,5 +68,10 @@ void get_rook_moves(moves_t* moves, position_t position) { friendly_rooks = position.bitboards[BLACK_ROOK]; } - __forloop_rook_moves_gen(moves, friendly_rooks, friendly_pieces, enemy_pieces); + __forloop_rook_moves_gen( + moves, + friendly_rooks, + friendly_pieces, + enemy_pieces + ); } |
