mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-24 06:51:17 +01:00
Change VERSION back to STATE_VERSION.
Update dolphin-emu.pot file for recent changes to strings in code. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7369 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
e26efc8561
commit
a2159f38bd
File diff suppressed because it is too large
Load Diff
@ -65,7 +65,7 @@ static std::vector<u8> g_current_buffer;
|
||||
static std::thread g_save_thread;
|
||||
|
||||
// Don't forget to increase this after doing changes on the savestate system
|
||||
static const int VERSION = 4;
|
||||
static const int STATE_VERSION = 4;
|
||||
|
||||
struct StateHeader
|
||||
{
|
||||
@ -82,9 +82,9 @@ void EnableCompression(bool compression)
|
||||
|
||||
void DoState(PointerWrap &p)
|
||||
{
|
||||
u32 cookie = 0xBAADBABE + VERSION;
|
||||
u32 cookie = 0xBAADBABE + STATE_VERSION;
|
||||
p.Do(cookie);
|
||||
if (cookie != 0xBAADBABE + VERSION)
|
||||
if (cookie != 0xBAADBABE + STATE_VERSION)
|
||||
{
|
||||
p.SetMode(PointerWrap::MODE_MEASURE);
|
||||
return;
|
||||
|
Loading…
x
Reference in New Issue
Block a user