diff options
| author | 2022-10-13 13:00:07 -0500 | |
|---|---|---|
| committer | 2022-10-13 13:00:07 -0500 | |
| commit | 26b76d2eaf9dac2e43bf80a8a6cdf56812586726 (patch) | |
| tree | ad6e33a13c34858e1dfb635d36172e69ce5af845 /src | |
| parent | Merge pull request #9034 from liamwhite/result-macros (diff) | |
| parent | settings: Update aspect_ratio range (diff) | |
| download | yuzu-26b76d2eaf9dac2e43bf80a8a6cdf56812586726.tar.gz yuzu-26b76d2eaf9dac2e43bf80a8a6cdf56812586726.tar.xz yuzu-26b76d2eaf9dac2e43bf80a8a6cdf56812586726.zip | |
Merge pull request #9066 from Morph1984/fix-stretch-to-window
settings: Update aspect_ratio range
Diffstat (limited to 'src')
| -rw-r--r-- | src/common/settings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/settings.h b/src/common/settings.h index d2452c93b..0eb98939c 100644 --- a/src/common/settings.h +++ b/src/common/settings.h | |||
| @@ -431,7 +431,7 @@ struct Values { | |||
| 431 | FullscreenMode::Exclusive, | 431 | FullscreenMode::Exclusive, |
| 432 | #endif | 432 | #endif |
| 433 | FullscreenMode::Borderless, FullscreenMode::Exclusive, "fullscreen_mode"}; | 433 | FullscreenMode::Borderless, FullscreenMode::Exclusive, "fullscreen_mode"}; |
| 434 | SwitchableSetting<int, true> aspect_ratio{0, 0, 3, "aspect_ratio"}; | 434 | SwitchableSetting<int, true> aspect_ratio{0, 0, 4, "aspect_ratio"}; |
| 435 | SwitchableSetting<int, true> max_anisotropy{0, 0, 5, "max_anisotropy"}; | 435 | SwitchableSetting<int, true> max_anisotropy{0, 0, 5, "max_anisotropy"}; |
| 436 | SwitchableSetting<bool> use_speed_limit{true, "use_speed_limit"}; | 436 | SwitchableSetting<bool> use_speed_limit{true, "use_speed_limit"}; |
| 437 | SwitchableSetting<u16, true> speed_limit{100, 0, 9999, "speed_limit"}; | 437 | SwitchableSetting<u16, true> speed_limit{100, 0, 9999, "speed_limit"}; |