aboutsummaryrefslogtreecommitdiff
path: root/src/core/settings.h
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2017-03-21 22:57:31 -0400
committerGitHub <noreply@github.com>2017-03-21 22:57:31 -0400
commitccc3985cc0efe520bf4f53d4fcac7bfe1abdc82c (patch)
tree38120c3cf4e7af72dc8122f9f278b77aa52b663b /src/core/settings.h
parent1db4afd4f40f5b1564a57650037faee5c5023ca8 (diff)
parente0a4450bbd40d69d288023ab5a95eaa0b00100fd (diff)
Merge pull request #2512 from SonofUgly/custom-layout
Add custom layout settings.
Diffstat (limited to 'src/core/settings.h')
-rw-r--r--src/core/settings.h10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/core/settings.h b/src/core/settings.h
index d1a9f0da86..03c64c94c1 100644
--- a/src/core/settings.h
+++ b/src/core/settings.h
@@ -15,7 +15,6 @@ enum class LayoutOption {
Default,
SingleScreen,
LargeScreen,
- Custom,
};
namespace NativeButton {
@@ -99,6 +98,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;