Merge pull request #4341 from degasus/syncgpufix
SyncGPU: Fix savestate.
This commit is contained in:
commit
b15bcc6aa0
|
@ -71,7 +71,7 @@ static Common::Event g_compressAndDumpStateSyncEvent;
|
|||
static std::thread g_save_thread;
|
||||
|
||||
// Don't forget to increase this after doing changes on the savestate system
|
||||
static const u32 STATE_VERSION = 63; // Last changed in PR 4322
|
||||
static const u32 STATE_VERSION = 64; // Last changed in PR 4341
|
||||
|
||||
// Maps savestate versions to Dolphin versions.
|
||||
// Versions after 42 don't need to be added to this list,
|
||||
|
|
|
@ -85,6 +85,7 @@ void DoState(PointerWrap& p)
|
|||
}
|
||||
|
||||
p.Do(s_sync_ticks);
|
||||
p.Do(s_syncing_suspended);
|
||||
}
|
||||
|
||||
void PauseAndLock(bool doLock, bool unpauseOnUnlock)
|
||||
|
|
Loading…
Reference in New Issue