System: Bump save state version
This commit is contained in:
parent
86799775ce
commit
e0e76b881d
|
@ -11,6 +11,7 @@ A "BIOS" ROM image is required to to start the emulator and to play games. You c
|
||||||
|
|
||||||
## Latest News
|
## Latest News
|
||||||
|
|
||||||
|
- 2020/08/15: Playlist support/single memcard for multi-disc games in Qt frontend added.
|
||||||
- 2020/08/07: Automatic updater for standalone Windows builds.
|
- 2020/08/07: Automatic updater for standalone Windows builds.
|
||||||
- 2020/08/01: Initial PGXP (geometry/perspective correction) support.
|
- 2020/08/01: Initial PGXP (geometry/perspective correction) support.
|
||||||
- 2020/07/28: Qt frontend supports displaying interface in multiple languages.
|
- 2020/07/28: Qt frontend supports displaying interface in multiple languages.
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
#include "types.h"
|
#include "types.h"
|
||||||
|
|
||||||
static constexpr u32 SAVE_STATE_MAGIC = 0x43435544;
|
static constexpr u32 SAVE_STATE_MAGIC = 0x43435544;
|
||||||
static constexpr u32 SAVE_STATE_VERSION = 39;
|
static constexpr u32 SAVE_STATE_VERSION = 40;
|
||||||
|
|
||||||
#pragma pack(push, 4)
|
#pragma pack(push, 4)
|
||||||
struct SAVE_STATE_HEADER
|
struct SAVE_STATE_HEADER
|
||||||
|
|
Loading…
Reference in New Issue