From c56cc12c154b3f21411d71e10f4e8a5a9682355b Mon Sep 17 00:00:00 2001 From: Aargh Rai Date: Thu, 28 May 2026 00:09:50 +0530 Subject: 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 --- src/engine/moves/king.c | 1 - 1 file changed, 1 deletion(-) (limited to 'src/engine/moves/king.c') 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; -- cgit v1.2.3