diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-11-30 00:20:34 +0100 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2021-11-30 01:21:51 +0100 |
commit | bfac21fca10e1bc2f6888ce8592dc58bd9f2ffc3 (patch) | |
tree | 4749251285878a4d2398d965bf6fab74686d68dc | |
parent | qt_controller: Make use of (Enable/Disable)AllControllerConfiguration (diff) | |
download | yuzu-bfac21fca10e1bc2f6888ce8592dc58bd9f2ffc3.tar yuzu-bfac21fca10e1bc2f6888ce8592dc58bd9f2ffc3.tar.gz yuzu-bfac21fca10e1bc2f6888ce8592dc58bd9f2ffc3.tar.bz2 yuzu-bfac21fca10e1bc2f6888ce8592dc58bd9f2ffc3.tar.lz yuzu-bfac21fca10e1bc2f6888ce8592dc58bd9f2ffc3.tar.xz yuzu-bfac21fca10e1bc2f6888ce8592dc58bd9f2ffc3.tar.zst yuzu-bfac21fca10e1bc2f6888ce8592dc58bd9f2ffc3.zip |
-rw-r--r-- | src/core/hid/hid_types.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hid/hid_types.h b/src/core/hid/hid_types.h index acf54e233..780659b86 100644 --- a/src/core/hid/hid_types.h +++ b/src/core/hid/hid_types.h @@ -63,6 +63,8 @@ enum class NpadButton : u64 { LagonCUp = 1ULL << 32, LagonCRight = 1ULL << 33, LagonCDown = 1ULL << 34, + + All = 0xFFFFFFFFFFFFFFFFULL, }; DECLARE_ENUM_FLAG_OPERATORS(NpadButton); |