diff options
| author | 2016-05-13 18:32:43 +0300 | |
|---|---|---|
| committer | 2016-05-15 13:24:22 +0300 | |
| commit | 416faa20d1156ac4e8646710e9c1f9565c0ed14b (patch) | |
| tree | 8bc07be0343eea7f028c9a6ba52fee55d5ba0f1f /src/common/key_map.h | |
| parent | Refactor input subsystem (diff) | |
| download | yuzu-416faa20d1156ac4e8646710e9c1f9565c0ed14b.tar.gz yuzu-416faa20d1156ac4e8646710e9c1f9565c0ed14b.tar.xz yuzu-416faa20d1156ac4e8646710e9c1f9565c0ed14b.zip | |
implement circle pad modifier
Diffstat (limited to 'src/common/key_map.h')
| -rw-r--r-- | src/common/key_map.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/common/key_map.h b/src/common/key_map.h index 0438a14e0..ec371bdde 100644 --- a/src/common/key_map.h +++ b/src/common/key_map.h | |||
| @@ -13,7 +13,11 @@ class EmuWindow; | |||
| 13 | namespace KeyMap { | 13 | namespace KeyMap { |
| 14 | 14 | ||
| 15 | enum class IndirectTarget { | 15 | enum class IndirectTarget { |
| 16 | CIRCLE_PAD_UP, CIRCLE_PAD_DOWN, CIRCLE_PAD_LEFT, CIRCLE_PAD_RIGHT, | 16 | CIRCLE_PAD_UP, |
| 17 | CIRCLE_PAD_DOWN, | ||
| 18 | CIRCLE_PAD_LEFT, | ||
| 19 | CIRCLE_PAD_RIGHT, | ||
| 20 | CIRCLE_PAD_MODIFIER, | ||
| 17 | }; | 21 | }; |
| 18 | 22 | ||
| 19 | /** | 23 | /** |