mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 11:49:06 +00:00
Fix saving states freezing up emulation
Only for about half a second but noticeable nonetheless
This commit is contained in:
parent
c70da390a7
commit
04764f8b7f
4 changed files with 8 additions and 6 deletions
|
@ -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()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue