diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-08-16 04:41:50 +0200 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-08-16 04:41:50 +0200 |
commit | 3e28e85468cafb928cda5dc9210eba95af26e212 (patch) | |
tree | 50d3cb165db3d6c89cfaa6562236b114e32f2144 /src/common/settings.cpp | |
parent | Merge pull request #11271 from t895/settings-tweaks (diff) | |
download | yuzu-3e28e85468cafb928cda5dc9210eba95af26e212.tar yuzu-3e28e85468cafb928cda5dc9210eba95af26e212.tar.gz yuzu-3e28e85468cafb928cda5dc9210eba95af26e212.tar.bz2 yuzu-3e28e85468cafb928cda5dc9210eba95af26e212.tar.lz yuzu-3e28e85468cafb928cda5dc9210eba95af26e212.tar.xz yuzu-3e28e85468cafb928cda5dc9210eba95af26e212.tar.zst yuzu-3e28e85468cafb928cda5dc9210eba95af26e212.zip |
Diffstat (limited to 'src/common/settings.cpp')
-rw-r--r-- | src/common/settings.cpp | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 15fd2e222..16a58a750 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -207,9 +207,7 @@ const char* TranslateCategory(Category category) { return "Miscellaneous"; } -void UpdateRescalingInfo() { - const auto setup = values.resolution_setup.GetValue(); - auto& info = values.resolution_info; +void TranslateResolutionInfo(ResolutionSetup setup, ResolutionScalingInfo& info) { info.downscale = false; switch (setup) { case ResolutionSetup::Res1_2X: @@ -269,6 +267,12 @@ void UpdateRescalingInfo() { info.active = info.up_scale != 1 || info.down_shift != 0; } +void UpdateRescalingInfo() { + const auto setup = values.resolution_setup.GetValue(); + auto& info = values.resolution_info; + TranslateResolutionInfo(setup, info); +} + void RestoreGlobalState(bool is_powered_on) { // If a game is running, DO NOT restore the global settings state if (is_powered_on) { |