diff options
author | bunnei <bunneidev@gmail.com> | 2023-01-16 17:49:06 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-16 17:49:06 -0800 |
commit | 28fde29924ed356c5714d1eccc4210e263a7dbdb (patch) | |
tree | 82d53c06c7b4e21432fee81d94bc3b7a7ac27a29 /src/common/settings.cpp | |
parent | 58a10ed5d01399fb688fae3d3abd6733c76ef171 (diff) | |
parent | d7dbd8e7742328d8a69bd7e01e1bd8cf6d545892 (diff) |
Merge pull request #9612 from goldenx86/1.5xScaler
1.5X, 7X, 8X resolution scaler options
Diffstat (limited to 'src/common/settings.cpp')
-rw-r--r-- | src/common/settings.cpp | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/common/settings.cpp b/src/common/settings.cpp index 1638b79f5..b1a2aa8b2 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp @@ -129,6 +129,10 @@ void UpdateRescalingInfo() { info.up_scale = 1; info.down_shift = 0; break; + case ResolutionSetup::Res3_2X: + info.up_scale = 3; + info.down_shift = 1; + break; case ResolutionSetup::Res2X: info.up_scale = 2; info.down_shift = 0; @@ -149,6 +153,14 @@ void UpdateRescalingInfo() { info.up_scale = 6; info.down_shift = 0; break; + case ResolutionSetup::Res7X: + info.up_scale = 7; + info.down_shift = 0; + break; + case ResolutionSetup::Res8X: + info.up_scale = 8; + info.down_shift = 0; + break; default: ASSERT(false); info.up_scale = 1; |