fix no VALIDATE_SAVE_SIZE build

This commit is contained in:
withmorten 2021-06-28 18:14:15 +02:00
parent fdbd414299
commit de4699a97e
1 changed files with 1 additions and 1 deletions

View File

@ -111,5 +111,5 @@ WriteSaveBuf(uint8 *&buf, uint32 &length, const T &value)
} while(0)
#else
#define CheckSaveHeader(buf, a, b, c, d, size) SkipSaveBuf(buf, 8);
#define CheckSaveHeaderWithLength(buf, a, b, c, d, size) SkipSaveBuf(buf, 8);
#define CheckSaveHeaderWithLength(buf, len, a, b, c, d, size) SkipSaveBuf(buf, 8);
#endif