summaryrefslogtreecommitdiff
path: root/src/engine/moves/king.c
diff options
context:
space:
mode:
authorAargh Rai <aargh.rai+git@gmail.com>2026-05-28 00:09:50 +0530
committerAargh Rai <aargh.rai+git@gmail.com>2026-05-28 00:09:50 +0530
commitc56cc12c154b3f21411d71e10f4e8a5a9682355b (patch)
tree9e07f9cf746ca12ca386c3ea1bebe4953453045a /src/engine/moves/king.c
parent2c2a70b69869f149c0407a62f1bf4c39899027a7 (diff)
the moves now make it to the frontend
i know the issue which exists, where the server can't handle the request if i reload the page
Diffstat (limited to 'src/engine/moves/king.c')
-rw-r--r--src/engine/moves/king.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/engine/moves/king.c b/src/engine/moves/king.c
index 0637109..6e8d105 100644
--- a/src/engine/moves/king.c
+++ b/src/engine/moves/king.c
@@ -28,7 +28,6 @@ void get_king_moves(moves_t* moves, position_t position) {
}
movement &= ~friendly_pieces;
- print_bitboard(movement);
while (movement) {
int to = __builtin_ctzll(movement);
movement &= movement - 1;