System: Limit maximum loadable save state version

This commit is contained in:
Albert Liu
2020-11-26 19:51:45 -08:00
parent b2de5945c4
commit 32e47fba93
3 changed files with 11 additions and 7 deletions

View File

@ -5,6 +5,8 @@ static constexpr u32 SAVE_STATE_MAGIC = 0x43435544;
static constexpr u32 SAVE_STATE_VERSION = 45;
static constexpr u32 SAVE_STATE_MINIMUM_VERSION = 42;
static_assert(SAVE_STATE_VERSION >= SAVE_STATE_MINIMUM_VERSION);
#pragma pack(push, 4)
struct SAVE_STATE_HEADER
{