Skip to content

Commit a30d658

Browse files
committed
2 parents bcedf0b + b364897 commit a30d658

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/syzygy/tbprobe.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -293,16 +293,16 @@ struct Atomic {
293293
std::atomic_bool ready;
294294
};
295295

296-
// We define types for the different parts of the WLDEntry and DTZEntry with
296+
// We define types for the different parts of the WDLEntry and DTZEntry with
297297
// corresponding specializations for pieces or pawns.
298298

299-
struct WLDEntryPiece {
299+
struct WDLEntryPiece {
300300
PairsData* precomp;
301301
};
302302

303303
struct WDLEntryPawn {
304304
uint8_t pawnCount[2]; // [Lead color / other color]
305-
WLDEntryPiece file[2][4]; // [wtm / btm][FILE_A..FILE_D]
305+
WDLEntryPiece file[2][4]; // [wtm / btm][FILE_A..FILE_D]
306306
};
307307

308308
struct DTZEntryPiece {
@@ -334,7 +334,7 @@ struct WDLEntry : public TBEntry {
334334
WDLEntry(const std::string& code, Variant v);
335335
~WDLEntry();
336336
union {
337-
WLDEntryPiece pieceTable[2]; // [wtm / btm]
337+
WDLEntryPiece pieceTable[2]; // [wtm / btm]
338338
WDLEntryPawn pawnTable;
339339
};
340340
};

0 commit comments

Comments
 (0)