mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Fix saving states freezing up emulation
Only for about half a second but noticeable nonetheless
This commit is contained in:
@ -1183,8 +1183,7 @@ void MainWindow::StateLoadSlot()
|
||||
|
||||
void MainWindow::StateSaveSlot()
|
||||
{
|
||||
State::Save(m_state_slot, true);
|
||||
m_menu_bar->UpdateStateSlotMenu();
|
||||
State::Save(m_state_slot);
|
||||
}
|
||||
|
||||
void MainWindow::StateLoadSlotAt(int slot)
|
||||
@ -1199,8 +1198,7 @@ void MainWindow::StateLoadLastSavedAt(int slot)
|
||||
|
||||
void MainWindow::StateSaveSlotAt(int slot)
|
||||
{
|
||||
State::Save(slot, true);
|
||||
m_menu_bar->UpdateStateSlotMenu();
|
||||
State::Save(slot);
|
||||
}
|
||||
|
||||
void MainWindow::StateLoadUndo()
|
||||
|
Reference in New Issue
Block a user