From 1d6a6717ba088c3b89d50021f2bf6656eb564533 Mon Sep 17 00:00:00 2001 From: Adam Date: Wed, 29 Jul 2026 16:18:52 +0200 Subject: implementing castling --- src/uci.cpp | 2 -- 1 file changed, 2 deletions(-) (limited to 'src/uci.cpp') diff --git a/src/uci.cpp b/src/uci.cpp index 310d31c..8a7ad9a 100644 --- a/src/uci.cpp +++ b/src/uci.cpp @@ -83,7 +83,6 @@ Game initBoard( b.canEnpassant = false; b.state = TURN; b.turn = true; - b.castle = ""; b.halfMoveClock = 0; b.MoveClock = 0; b.Transpositions = transPositions; @@ -91,7 +90,6 @@ Game initBoard( Piece EmptyPiece = { false, NONEPIECE, - false, }; for (int i = 0; i < 64; i++) { b.pieces[i] = EmptyPiece; -- cgit v1.2.3