Browse Source

core: hid: hid_types: Add "All" to NpadButton

This represents a bitmask for all pressed buttons
pull/15/merge
Morph 4 years ago
parent
commit
bfac21fca1
  1. 2
      src/core/hid/hid_types.h

2
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);

Loading…
Cancel
Save