mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2024-11-22 13:55:38 +00:00
System: Fix certain GPU settings not applying until unpause
This commit is contained in:
parent
97e555a47d
commit
2cfa535784
|
@ -4117,7 +4117,7 @@ void System::CheckForSettingsChanges(const Settings& old_settings)
|
|||
g_settings.runahead_frames != old_settings.runahead_frames)
|
||||
{
|
||||
g_gpu->UpdateSettings(old_settings);
|
||||
if (!IsPaused())
|
||||
if (IsPaused())
|
||||
InvalidateDisplay();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue