diff options
author | bunnei <bunneidev@gmail.com> | 2015-02-23 21:13:29 -0500 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-02-23 21:13:29 -0500 |
commit | 3700263f71d24b27fe1ff992985f45d7438069c1 (patch) | |
tree | ccd9c0a8eef4cdcf7ec4d41cf861a49e46186d3d /src/core/settings.h | |
parent | 50a0c4f14fc0c6df4db63a5593c6ff477736034c (diff) | |
parent | aa64f69af019d6a30e812593eaa70ba9c90dd865 (diff) |
Merge pull request #595 from linkmauve/new-3ds-input
Frontends, HID: Add New 3DS specific pad buttons, and stub the touch one.
Diffstat (limited to 'src/core/settings.h')
-rw-r--r-- | src/core/settings.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/core/settings.h b/src/core/settings.h index e62dd4358..870eea958 100644 --- a/src/core/settings.h +++ b/src/core/settings.h @@ -16,6 +16,8 @@ struct Values { int pad_y_key; int pad_l_key; int pad_r_key; + int pad_zl_key; + int pad_zr_key; int pad_start_key; int pad_select_key; int pad_home_key; @@ -27,6 +29,10 @@ struct Values { int pad_sdown_key; int pad_sleft_key; int pad_sright_key; + int pad_cup_key; + int pad_cdown_key; + int pad_cleft_key; + int pad_cright_key; // Core int gpu_refresh_rate; |