System: Remove BIOS from save state

Makes the states smaller, as well as not creating potential piracy
issues when sending across the wire.
This commit is contained in:
Stenzek
2023-03-16 19:33:59 +10:00
parent 1fcf16fc81
commit 33f5d9cb9c
5 changed files with 38 additions and 3 deletions

View File

@ -5,7 +5,7 @@
#include "types.h"
static constexpr u32 SAVE_STATE_MAGIC = 0x43435544;
static constexpr u32 SAVE_STATE_VERSION = 57;
static constexpr u32 SAVE_STATE_VERSION = 58;
static constexpr u32 SAVE_STATE_MINIMUM_VERSION = 42;
static_assert(SAVE_STATE_VERSION >= SAVE_STATE_MINIMUM_VERSION);