mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-16 23:47:46 +00:00
core: hid: hid_types: Add "All" to NpadButton
This represents a bitmask for all pressed buttons
This commit is contained in:
parent
1524ed6776
commit
978c1c2853
1 changed files with 2 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue