diff options
| author | 2023-02-12 02:58:39 +0100 | |
|---|---|---|
| committer | 2023-02-12 02:58:39 +0100 | |
| commit | 9df92bad2a39dd6e33f0eaffb5c189480839a153 (patch) | |
| tree | bea8c916b1fd5c00f87170494609d4e02fe88bf7 /src/common/settings.cpp | |
| parent | Merge pull request #9781 from ColinKinloch/info_id_typo (diff) | |
| download | yuzu-9df92bad2a39dd6e33f0eaffb5c189480839a153.tar.gz yuzu-9df92bad2a39dd6e33f0eaffb5c189480839a153.tar.xz yuzu-9df92bad2a39dd6e33f0eaffb5c189480839a153.zip | |
Update settings.cpp
added missing graphical settings to RestoreGlobalState()
Diffstat (limited to 'src/common/settings.cpp')
| -rw-r--r-- | src/common/settings.cpp | 4 |
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) { | |||
| 199 | values.renderer_backend.SetGlobal(true); | 199 | values.renderer_backend.SetGlobal(true); |
| 200 | values.renderer_force_max_clock.SetGlobal(true); | 200 | values.renderer_force_max_clock.SetGlobal(true); |
| 201 | values.vulkan_device.SetGlobal(true); | 201 | values.vulkan_device.SetGlobal(true); |
| 202 | values.fullscreen_mode.SetGlobal(true); | ||
| 202 | values.aspect_ratio.SetGlobal(true); | 203 | values.aspect_ratio.SetGlobal(true); |
| 204 | values.resolution_setup.SetGlobal(true); | ||
| 205 | values.scaling_filter.SetGlobal(true); | ||
| 206 | values.anti_aliasing.SetGlobal(true); | ||
| 203 | values.max_anisotropy.SetGlobal(true); | 207 | values.max_anisotropy.SetGlobal(true); |
| 204 | values.use_speed_limit.SetGlobal(true); | 208 | values.use_speed_limit.SetGlobal(true); |
| 205 | values.speed_limit.SetGlobal(true); | 209 | values.speed_limit.SetGlobal(true); |