From 3ca26064204fbe43a93ce41d1d3659131317082d Mon Sep 17 00:00:00 2001 From: Josh Date: Sat, 16 Aug 2025 15:25:14 -0400 Subject: [PATCH] Fix comment --- engine/src/bitboard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/src/bitboard.c b/engine/src/bitboard.c index bc047bd..a69f3bb 100644 --- a/engine/src/bitboard.c +++ b/engine/src/bitboard.c @@ -350,7 +350,7 @@ void gen_black_pawn_captures(const struct Board *board, struct Move *out, int *c Pieces that are not PAWNs - */ +*/ void gen_knight_moves(const struct Board *board, struct Move *out, int *count, bool captures_only) { enum Color side = board->side_to_move; uint64_t own = board->occ[side];