summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/settings.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/core/settings.h b/src/core/settings.h
index bd9a3d9fe..56fb189ae 100644
--- a/src/core/settings.h
+++ b/src/core/settings.h
@@ -79,11 +79,16 @@ static const std::array<const char*, NumButtons> mapping = {{
79 "button_lstick_up", 79 "button_lstick_up",
80 "button_lstick_right", 80 "button_lstick_right",
81 "button_lstick_down", 81 "button_lstick_down",
82 "button_rstick_left",
83 "button_rstick_up",
84 "button_rstick_right",
85 "button_rstick_down",
82 "button_sl", 86 "button_sl",
83 "button_sr", 87 "button_sr",
84 "button_home", 88 "button_home",
85 "button_screenshot", 89 "button_screenshot",
86}}; 90}};
91
87} // namespace NativeButton 92} // namespace NativeButton
88 93
89namespace NativeAnalog { 94namespace NativeAnalog {
@@ -95,8 +100,7 @@ enum Values {
95}; 100};
96 101
97static const std::array<const char*, NumAnalogs> mapping = {{ 102static const std::array<const char*, NumAnalogs> mapping = {{
98 "lstick", 103 "lstick", "rstick",
99 "rstick",
100}}; 104}};
101} // namespace NativeAnalog 105} // namespace NativeAnalog
102 106