diff options
author | James Rowe <jroweboy@gmail.com> | 2016-05-03 00:07:17 -0600 |
---|---|---|
committer | James Rowe <jroweboy@gmail.com> | 2016-11-05 02:55:41 -0600 |
commit | 2b1654ad9bbd8af53f22434d350704a1a1d0a285 (patch) | |
tree | 0da3cc7a1c622c1a659f4b2a8c5c08984dabd5c3 /src/core/settings.h | |
parent | 1f70365faa75e5dc25108d22bf0a0399b93761df (diff) |
Support additional screen layouts.
Allows users to choose a single screen layout or a large screen layout.
Adds a configuration option to change the prominent screen.
Diffstat (limited to 'src/core/settings.h')
-rw-r--r-- | src/core/settings.h | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/core/settings.h b/src/core/settings.h index 5a64f8018..e931953d7 100644 --- a/src/core/settings.h +++ b/src/core/settings.h @@ -10,7 +10,15 @@ namespace Settings { +enum class LayoutOption { + Default, + SingleScreen, + LargeScreen, + Custom, +}; + namespace NativeInput { + enum Values { // directly mapped keys A, @@ -84,6 +92,9 @@ struct Values { bool use_scaled_resolution; bool use_vsync; + LayoutOption layout_option; + bool swap_screen; + float bg_red; float bg_green; float bg_blue; |