diff options
| author | 2023-11-16 09:13:39 -0500 | |
|---|---|---|
| committer | 2023-11-16 09:13:39 -0500 | |
| commit | ea4c92f734fdcb26d20d1313a84d39cc95c9c575 (patch) | |
| tree | c2bec0a6007751afd01fe624a003026ab9831bd1 /src/common/settings_input.cpp | |
| parent | Merge pull request #12043 from t895/disable-pip-default (diff) | |
| parent | core: hid: Split SL and SR buttons (diff) | |
| download | yuzu-ea4c92f734fdcb26d20d1313a84d39cc95c9c575.tar.gz yuzu-ea4c92f734fdcb26d20d1313a84d39cc95c9c575.tar.xz yuzu-ea4c92f734fdcb26d20d1313a84d39cc95c9c575.zip | |
Merge pull request #12007 from german77/moar_buttons
core: hid: Split SL and SR buttons
Diffstat (limited to 'src/common/settings_input.cpp')
| -rw-r--r-- | src/common/settings_input.cpp | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/common/settings_input.cpp b/src/common/settings_input.cpp index 0a6eea3cf..a6007e7b2 100644 --- a/src/common/settings_input.cpp +++ b/src/common/settings_input.cpp | |||
| @@ -6,10 +6,11 @@ | |||
| 6 | namespace Settings { | 6 | namespace Settings { |
| 7 | namespace NativeButton { | 7 | namespace NativeButton { |
| 8 | const std::array<const char*, NumButtons> mapping = {{ | 8 | const std::array<const char*, NumButtons> mapping = {{ |
| 9 | "button_a", "button_b", "button_x", "button_y", "button_lstick", | 9 | "button_a", "button_b", "button_x", "button_y", "button_lstick", |
| 10 | "button_rstick", "button_l", "button_r", "button_zl", "button_zr", | 10 | "button_rstick", "button_l", "button_r", "button_zl", "button_zr", |
| 11 | "button_plus", "button_minus", "button_dleft", "button_dup", "button_dright", | 11 | "button_plus", "button_minus", "button_dleft", "button_dup", "button_dright", |
| 12 | "button_ddown", "button_sl", "button_sr", "button_home", "button_screenshot", | 12 | "button_ddown", "button_slleft", "button_srleft", "button_home", "button_screenshot", |
| 13 | "button_slright", "button_srright", | ||
| 13 | }}; | 14 | }}; |
| 14 | } | 15 | } |
| 15 | 16 | ||