summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2023-02-12 21:49:45 -0800
committerGitHub <noreply@github.com>2023-02-12 21:49:45 -0800
commit770a49616d9f9772ffd6c1648a25da4abd4338e2 (patch)
treeed0359ad59a6cd87573dc1474d627944f74af3b8 /src
parent8b74047b1b4eac10c6152a18920d0a8e1861fecd (diff)
parent9df92bad2a39dd6e33f0eaffb5c189480839a153 (diff)
Merge pull request #9784 from m-HD/master
settings: added missing graphical settings to RestoreGlobalState()
Diffstat (limited to 'src')
-rw-r--r--src/common/settings.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp
index b1a2aa8b2..49b41c158 100644
--- a/src/common/settings.cpp
+++ b/src/common/settings.cpp
@@ -199,7 +199,11 @@ void RestoreGlobalState(bool is_powered_on) {
values.renderer_backend.SetGlobal(true);
values.renderer_force_max_clock.SetGlobal(true);
values.vulkan_device.SetGlobal(true);
+ values.fullscreen_mode.SetGlobal(true);
values.aspect_ratio.SetGlobal(true);
+ values.resolution_setup.SetGlobal(true);
+ values.scaling_filter.SetGlobal(true);
+ values.anti_aliasing.SetGlobal(true);
values.max_anisotropy.SetGlobal(true);
values.use_speed_limit.SetGlobal(true);
values.speed_limit.SetGlobal(true);