Fix 39e90ec: Integers for scripts are 64bit, but saved as 32bit (#9415)

This commit is contained in:
Loïc Guilloux
2021-07-06 21:09:08 +02:00
committed by GitHub
parent 8913ae9ba8
commit ddafc0de05
3 changed files with 7 additions and 6 deletions

View File

@@ -335,6 +335,7 @@ enum SaveLoadVersion : uint16 {
SLV_RIFF_TO_ARRAY, ///< 294 PR#9375 Changed many CH_RIFF chunks to CH_ARRAY chunks.
SLV_TABLE_CHUNKS, ///< 295 PR#9322 Introduction of CH_TABLE and CH_SPARSE_TABLE.
SLV_SCRIPT_INT64, ///< 296 PR#9415 SQInteger is 64bit but was saved as 32bit.
SL_MAX_VERSION, ///< Highest possible saveload version
};