Skip to content

Commit

Permalink
System: Fix certain GPU settings not applying until unpause
Browse files Browse the repository at this point in the history
  • Loading branch information
stenzek committed Jul 13, 2024
1 parent 97e555a commit 2cfa535
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/system.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
}

Expand Down

0 comments on commit 2cfa535

Please sign in to comment.