diff options
| author | 2023-01-13 02:34:24 -0300 | |
|---|---|---|
| committer | 2023-01-13 02:34:24 -0300 | |
| commit | 3ba53f2511b2089656f7a16b6d6d8f7ef54e3a8a (patch) | |
| tree | 128e95b547280a3dc7cec22102ce0af9277f4705 /src/common/settings.cpp | |
| parent | Merge pull request #9605 from german77/mouse_mapping (diff) | |
| download | yuzu-3ba53f2511b2089656f7a16b6d6d8f7ef54e3a8a.tar.gz yuzu-3ba53f2511b2089656f7a16b6d6d8f7ef54e3a8a.tar.xz yuzu-3ba53f2511b2089656f7a16b6d6d8f7ef54e3a8a.zip | |
1.5X resolution scaler option
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 1638b79f5..6a5569fe0 100644 --- a/src/common/settings.cpp +++ b/src/common/settings.cpp | |||
| @@ -129,6 +129,10 @@ void UpdateRescalingInfo() { | |||
| 129 | info.up_scale = 1; | 129 | info.up_scale = 1; |
| 130 | info.down_shift = 0; | 130 | info.down_shift = 0; |
| 131 | break; | 131 | break; |
| 132 | case ResolutionSetup::Res3_2X: | ||
| 133 | info.up_scale = 3; | ||
| 134 | info.down_shift = 1; | ||
| 135 | break; | ||
| 132 | case ResolutionSetup::Res2X: | 136 | case ResolutionSetup::Res2X: |
| 133 | info.up_scale = 2; | 137 | info.up_scale = 2; |
| 134 | info.down_shift = 0; | 138 | info.down_shift = 0; |