summaryrefslogtreecommitdiffstats
path: root/src/common/settings.cpp
diff options
context:
space:
mode:
authorliamwhite <liamwhite@users.noreply.github.com>2023-08-22 17:30:25 +0200
committerGitHub <noreply@github.com>2023-08-22 17:30:25 +0200
commitef61d129d3ce357eeb12bc3ed14a1f5e376f1f95 (patch)
tree318a5af7edcf8c38de2d1d8a857fa25ce82cb827 /src/common/settings.cpp
parentMerge pull request #11316 from FernandoS27/stop-premature-christmas-decorating (diff)
parentuisettings: Add TODO for stretched aspect being ignored (diff)
downloadyuzu-ef61d129d3ce357eeb12bc3ed14a1f5e376f1f95.tar
yuzu-ef61d129d3ce357eeb12bc3ed14a1f5e376f1f95.tar.gz
yuzu-ef61d129d3ce357eeb12bc3ed14a1f5e376f1f95.tar.bz2
yuzu-ef61d129d3ce357eeb12bc3ed14a1f5e376f1f95.tar.lz
yuzu-ef61d129d3ce357eeb12bc3ed14a1f5e376f1f95.tar.xz
yuzu-ef61d129d3ce357eeb12bc3ed14a1f5e376f1f95.tar.zst
yuzu-ef61d129d3ce357eeb12bc3ed14a1f5e376f1f95.zip
Diffstat (limited to '')
-rw-r--r--src/common/settings.cpp10
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) {