mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 22:29:39 -06: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:
@ -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,
|
||||
|
Reference in New Issue
Block a user