X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fposition.h;h=8e29eb13458390ff2d4a405ffd61cebd794f46ee;hp=bd59b5c959d624c90c66a63f943a04f33d19fd0b;hb=772a37cd54212a7b045781b69eb190bd5d4e3161;hpb=c02613860a3836bb85da25ae2fed9f1351ba27a5 diff --git a/src/position.h b/src/position.h index bd59b5c9..8e29eb13 100644 --- a/src/position.h +++ b/src/position.h @@ -79,14 +79,15 @@ enum CastleRights { /// must be passed as a parameter. struct StateInfo { - Bitboard checkersBB; Key key, pawnKey, materialKey; int castleRights, rule50; Square epSquare; Value mgValue, egValue; + PieceType capture; - StateInfo* previous; + Bitboard checkersBB; Move lastMove; + StateInfo* previous; };