mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-04 23:29:17 +00:00
IOS: Clarify Init, Reinit, Reset, Shutdown
Some minor changes to make things slightly less confusing: * Reinit doesn't actually init anything. It just adds static devices to the map, so let's give it an actually descriptive name. And let's not expose it in the header when it should not be. * Reset's parameter name was changed from "force" -- which totally does not describe what it does -- to "clear_devices". * Add a reload function which handles the reload process properly (reset all devices, set up memory values, re-add devices) and without publicly exposing implementation details.
This commit is contained in:
parent
a2750a82dd
commit
ab38be1ee2
5 changed files with 27 additions and 24 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 = 76; // Last changed in PR 4829
|
||||
static const u32 STATE_VERSION = 77; // Last changed in PR 4784
|
||||
|
||||
// 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