System: Fix black screen when changing options while paused

This commit is contained in:
Stenzek 2025-02-14 18:45:42 +10:00
parent 953bd0919b
commit 5ae32d3c70
No known key found for this signature in database
1 changed files with 8 additions and 2 deletions

View File

@ -4491,7 +4491,11 @@ void System::CheckForSettingsChanges(const Settings& old_settings)
ClearMemorySaveStates(true, use_existing_textures);
if (IsPaused())
{
// resolution change needs display updated
g_gpu.UpdateDisplay(false);
GPUThread::PresentCurrentFrame();
}
}
else if (const bool device_settings_changed = g_settings.AreGPUDeviceSettingsChanged(old_settings);
device_settings_changed || g_settings.display_show_fps != old_settings.display_show_fps ||
@ -4519,10 +4523,12 @@ void System::CheckForSettingsChanges(const Settings& old_settings)
GPUThread::UpdateSettings(true, true, g_settings.gpu_use_thread != old_settings.gpu_use_thread);
ClearMemorySaveStates(true, false);
// and display the current frame on the new device
g_gpu.UpdateDisplay(false);
if (IsPaused())
{
// and display the current frame on the new device
g_gpu.UpdateDisplay(false);
GPUThread::PresentCurrentFrame();
}
}
else
{