diff options
author | SonofUgly <son_of_ugly@yahoo.com> | 2017-02-01 09:22:47 +0100 |
---|---|---|
committer | SonofUgly <son_of_ugly@yahoo.com> | 2017-02-23 19:49:56 +0100 |
commit | e0a4450bbd40d69d288023ab5a95eaa0b00100fd (patch) | |
tree | 288cacc8a345cea50d8c6a25c17e4ebbb1ec41d9 /src/core/settings.h | |
parent | Merge pull request #2485 from Kloen/killing-warnings-computehash64 (diff) | |
download | yuzu-e0a4450bbd40d69d288023ab5a95eaa0b00100fd.tar yuzu-e0a4450bbd40d69d288023ab5a95eaa0b00100fd.tar.gz yuzu-e0a4450bbd40d69d288023ab5a95eaa0b00100fd.tar.bz2 yuzu-e0a4450bbd40d69d288023ab5a95eaa0b00100fd.tar.lz yuzu-e0a4450bbd40d69d288023ab5a95eaa0b00100fd.tar.xz yuzu-e0a4450bbd40d69d288023ab5a95eaa0b00100fd.tar.zst yuzu-e0a4450bbd40d69d288023ab5a95eaa0b00100fd.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/settings.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/core/settings.h b/src/core/settings.h index e22ce0f16..52cebc627 100644 --- a/src/core/settings.h +++ b/src/core/settings.h @@ -14,7 +14,6 @@ enum class LayoutOption { Default, SingleScreen, LargeScreen, - Custom, }; namespace NativeInput { @@ -94,6 +93,15 @@ struct Values { LayoutOption layout_option; bool swap_screen; + bool custom_layout; + u16 custom_top_left; + u16 custom_top_top; + u16 custom_top_right; + u16 custom_top_bottom; + u16 custom_bottom_left; + u16 custom_bottom_top; + u16 custom_bottom_right; + u16 custom_bottom_bottom; float bg_red; float bg_green; |