diff options
| author | 2020-11-06 09:54:02 -0800 | |
|---|---|---|
| committer | 2020-11-06 09:54:02 -0800 | |
| commit | 0b75ec531629f9b78d4016e21de8c8d55476fade (patch) | |
| tree | 9c7e7847d04f1bb946474c8a9b0ac788f2e55fde | |
| parent | Merge pull request #4854 from ReinUsesLisp/cube-array-shadow (diff) | |
| parent | settings: Simplify initializer of resolution factor (diff) | |
| download | yuzu-0b75ec531629f9b78d4016e21de8c8d55476fade.tar.gz yuzu-0b75ec531629f9b78d4016e21de8c8d55476fade.tar.xz yuzu-0b75ec531629f9b78d4016e21de8c8d55476fade.zip | |
Merge pull request #4894 from lioncash/fn
settings: Simplify initializer of resolution factor
Diffstat (limited to '')
| -rw-r--r-- | src/core/settings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/settings.h b/src/core/settings.h index dcb1dbb31..28616a574 100644 --- a/src/core/settings.h +++ b/src/core/settings.h | |||
| @@ -101,7 +101,7 @@ struct Values { | |||
| 101 | bool renderer_debug; | 101 | bool renderer_debug; |
| 102 | Setting<int> vulkan_device; | 102 | Setting<int> vulkan_device; |
| 103 | 103 | ||
| 104 | Setting<u16> resolution_factor = Setting(static_cast<u16>(1)); | 104 | Setting<u16> resolution_factor{1}; |
| 105 | Setting<int> aspect_ratio; | 105 | Setting<int> aspect_ratio; |
| 106 | Setting<int> max_anisotropy; | 106 | Setting<int> max_anisotropy; |
| 107 | Setting<bool> use_frame_limit; | 107 | Setting<bool> use_frame_limit; |