Autoload last savestate - if this is set, load the state after loading a rom too, instead of only on emulator load. Note: this will be quirky since the last slot is determined by the current saveslot, which isn't correct, but the alternative is much higher effort

This commit is contained in:
adelikat 2014-07-21 22:38:53 +00:00
parent 240264c3c5
commit 5179c59f58
1 changed files with 4 additions and 0 deletions

View File

@ -3187,6 +3187,10 @@ namespace BizHawk.Client.EmuHawk
RewireSound();
ToolHelpers.UpdateCheatRelatedTools(null, null);
if (Global.Config.AutoLoadLastSaveSlot && _stateSlots.HasSlot(Global.Config.SaveSlot))
{
LoadQuickSave("QuickSave" + Global.Config.SaveSlot);
}
return true;
}
else