Auto save state load: set current slot to loaded one.

This commit is contained in:
Juha Laukkanen 2014-07-15 21:14:35 +09:00 committed by sum2012
parent 8da08ea686
commit 8d34c6bf66

View File

@ -741,5 +741,6 @@ void EmuScreen::autoLoad() {
int lastSlot = SaveState::GetNewestSlot();
if (g_Config.bEnableAutoLoad && lastSlot != -1) {
SaveState::LoadSlot(lastSlot, 0, 0);
g_Config.iCurrentStateSlot = lastSlot;
}
}