Qt: Add shutdown without saving menu option

This commit is contained in:
Connor McLaughlin
2021-01-08 23:42:17 +10:00
parent 6a04803502
commit b0398f5aa7
10 changed files with 43 additions and 5 deletions

View File

@ -174,9 +174,6 @@ void CommonHostInterface::PowerOffSystem()
if (System::IsShutdown())
return;
if (g_settings.save_state_on_exit)
SaveResumeSaveState();
HostInterface::PowerOffSystem();
if (InBatchMode())
@ -1489,6 +1486,9 @@ void CommonHostInterface::RegisterGeneralHotkeys()
}
}
if (g_settings.save_state_on_exit)
SaveResumeSaveState();
PowerOffSystem();
}
});