Qt: Redesign graphics settings panel

Add screenshot format/type.
This commit is contained in:
Stenzek
2024-03-02 19:08:38 +10:00
parent b8127facdc
commit 04b837a418
38 changed files with 2467 additions and 1572 deletions

View File

@@ -1373,7 +1373,7 @@ void EmuThread::saveScreenshot()
return;
}
System::SaveScreenshot(nullptr, true, true);
System::SaveScreenshot();
}
void Host::OnAchievementsLoginRequested(Achievements::LoginRequestReason reason)
@@ -1830,6 +1830,11 @@ void QtHost::QueueSettingsSave()
s_settings_save_timer->start(SETTINGS_SAVE_DELAY);
}
bool QtHost::ShouldShowDebugOptions()
{
return Host::GetBaseBoolSettingValue("Main", "ShowDebugMenu", false);
}
void Host::RequestSystemShutdown(bool allow_confirm, bool save_state)
{
if (!System::IsValid())