Browse Source
Merge pull request #4894 from lioncash/fn
settings: Simplify initializer of resolution factor
pull/15/merge
bunnei
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
src/core/settings.h
|
|
|
@ -101,7 +101,7 @@ struct Values { |
|
|
|
bool renderer_debug; |
|
|
|
Setting<int> vulkan_device; |
|
|
|
|
|
|
|
Setting<u16> resolution_factor = Setting(static_cast<u16>(1)); |
|
|
|
Setting<u16> resolution_factor{1}; |
|
|
|
Setting<int> aspect_ratio; |
|
|
|
Setting<int> max_anisotropy; |
|
|
|
Setting<bool> use_frame_limit; |
|
|
|
|