diff options
| author | 2021-07-01 12:06:12 -0400 | |
|---|---|---|
| committer | 2021-07-01 12:06:12 -0400 | |
| commit | cf1cd3321d12ef96062c3b59b98542e3155822d4 (patch) | |
| tree | 5c1f31ece29130373df0238ab0eac6a2281fd3bc | |
| parent | yuzu_cmd: config: Pass a reference in (diff) | |
| download | yuzu-cf1cd3321d12ef96062c3b59b98542e3155822d4.tar.gz yuzu-cf1cd3321d12ef96062c3b59b98542e3155822d4.tar.xz yuzu-cf1cd3321d12ef96062c3b59b98542e3155822d4.zip | |
settings: Set resolution_factor default to 1
Fixes Disgaea 6 Demo issues.
Diffstat (limited to '')
| -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 13896debf..c799e6243 100644 --- a/src/common/settings.h +++ b/src/common/settings.h | |||
| @@ -308,7 +308,7 @@ struct Values { | |||
| 308 | BasicSetting<bool> renderer_debug{false, "debug"}; | 308 | BasicSetting<bool> renderer_debug{false, "debug"}; |
| 309 | Setting<int> vulkan_device{0, "vulkan_device"}; | 309 | Setting<int> vulkan_device{0, "vulkan_device"}; |
| 310 | 310 | ||
| 311 | Setting<u16> resolution_factor{0, "resolution_factor"}; | 311 | Setting<u16> resolution_factor{1, "resolution_factor"}; |
| 312 | // *nix platforms may have issues with the borderless windowed fullscreen mode. | 312 | // *nix platforms may have issues with the borderless windowed fullscreen mode. |
| 313 | // Default to exclusive fullscreen on these platforms for now. | 313 | // Default to exclusive fullscreen on these platforms for now. |
| 314 | Setting<int> fullscreen_mode{ | 314 | Setting<int> fullscreen_mode{ |