diff options
author | James Rowe <jroweboy@gmail.com> | 2016-05-03 08:07:17 +0200 |
---|---|---|
committer | James Rowe <jroweboy@gmail.com> | 2016-11-05 09:55:41 +0100 |
commit | 2b1654ad9bbd8af53f22434d350704a1a1d0a285 (patch) | |
tree | 0da3cc7a1c622c1a659f4b2a8c5c08984dabd5c3 /src/core/settings.h | |
parent | Update CONTRIBUTING.md (diff) | |
download | yuzu-2b1654ad9bbd8af53f22434d350704a1a1d0a285.tar yuzu-2b1654ad9bbd8af53f22434d350704a1a1d0a285.tar.gz yuzu-2b1654ad9bbd8af53f22434d350704a1a1d0a285.tar.bz2 yuzu-2b1654ad9bbd8af53f22434d350704a1a1d0a285.tar.lz yuzu-2b1654ad9bbd8af53f22434d350704a1a1d0a285.tar.xz yuzu-2b1654ad9bbd8af53f22434d350704a1a1d0a285.tar.zst yuzu-2b1654ad9bbd8af53f22434d350704a1a1d0a285.zip |
Diffstat (limited to '')
-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; |