This commit is contained in:
Eric House 2020-09-29 16:06:59 -07:00
parent 2a973b6968
commit 2b56b1f8b2
2 changed files with 2 additions and 2 deletions

View file

@ -47,7 +47,7 @@
#endif
#define MAX_COLS MAX_ROWS
#define STREAM_VERS_GICREATED 0x1C /* CurGameInfo gets created timestamp */
#define STREAM_VERS_GICREATED 0x1C /* game struct gets created timestamp */
#define STREAM_VERS_DUPLICATE 0x1B
#define STREAM_VERS_DISABLEDS 0x1A
#define STREAM_VERS_DEVIDS 0x19

View file

@ -1932,7 +1932,7 @@ di_wordToString( const DictIter* iter, XP_UCHAR* buf, XP_U16 buflen,
iterToString( iter, buf, buflen, delim );
#ifdef DEBUG
// If there's no delim, debug string should be same
if ( !delim || '\0' != *delim ) {
if ( !delim || '\0' == *delim ) {
XP_ASSERT( 0 == XP_STRCMP( buf, iter->curWord ) );
}
#endif