From ad04f16e478357633c08174e844c8756f7892a32 Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 17 Aug 2026 15:22:37 +0200 Subject: refactor(board): refactoring move generation code into better and nice way + adding debug command moves --- src/misc.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/misc.cpp') diff --git a/src/misc.cpp b/src/misc.cpp index 6737777..e9073d4 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -19,7 +19,7 @@ uint64_t MoveGenTest(uint32_t depth, Game *g) { uint64_t positionCount = 0; - std::vector moves = GetLegalMoves(g); + std::vector moves = GetLegalMoves(g, ALL); // for each possible move create new branch for (uint16_t move : moves) { -- cgit v1.2.3