mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-29 12:19:12 +00:00
PowerPC: Explicitly savestate PowerPCState members
Makes it more obvious which data is going into the savestate. It also allows PowerPCState and InstructionCache to potentially contain members that don't necessarily need to be saved to the save state. It also gets rid of any potential padding data being put into the save state.
This commit is contained in:
parent
01f2216e20
commit
d266be5b56
4 changed files with 41 additions and 4 deletions
|
@ -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 = 70; // Last changed in PR 4679
|
||||
static const u32 STATE_VERSION = 71; // Last changed in PR 4687
|
||||
|
||||
// Maps savestate versions to Dolphin versions.
|
||||
// Versions after 42 don't need to be added to this list,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue