From 2cfa535784a752bea133fae89fd7bfb3a643e249 Mon Sep 17 00:00:00 2001 From: Stenzek Date: Sat, 13 Jul 2024 17:52:42 +1000 Subject: [PATCH] System: Fix certain GPU settings not applying until unpause --- src/core/system.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/system.cpp b/src/core/system.cpp index a305963b5..0e140a95e 100644 --- a/src/core/system.cpp +++ b/src/core/system.cpp @@ -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(); }