Add custom layout settings.

This commit is contained in:
SonofUgly 2017-02-01 00:22:47 -08:00
parent ac4ea522cb
commit e0a4450bbd
9 changed files with 104 additions and 13 deletions

View file

@ -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;