mirror of
https://git.suyu.dev/suyu/suyu
synced 2025-01-28 18:46:55 -06:00
core: hid: hid_types: Add "All" to NpadButton
This represents a bitmask for all pressed buttons
This commit is contained in:
parent
b86fcf7c31
commit
bfac21fca1
@ -63,6 +63,8 @@ enum class NpadButton : u64 {
|
|||||||
LagonCUp = 1ULL << 32,
|
LagonCUp = 1ULL << 32,
|
||||||
LagonCRight = 1ULL << 33,
|
LagonCRight = 1ULL << 33,
|
||||||
LagonCDown = 1ULL << 34,
|
LagonCDown = 1ULL << 34,
|
||||||
|
|
||||||
|
All = 0xFFFFFFFFFFFFFFFFULL,
|
||||||
};
|
};
|
||||||
DECLARE_ENUM_FLAG_OPERATORS(NpadButton);
|
DECLARE_ENUM_FLAG_OPERATORS(NpadButton);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user