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

@ -673,7 +673,11 @@ void SDLHostInterface::DrawMainMenuBar()
if (ImGui::MenuItem("Power Off", nullptr, false, system_enabled))
{
RunLater([this]() { DestroySystem(); });
RunLater([this]() {
if (g_settings.save_state_on_exit)
SaveResumeSaveState();
PowerOffSystem();
});
ClearImGuiFocus();
}