We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a2f949b commit 0663edeCopy full SHA for 0663ede
1 file changed
include/buttoncombo/defines.h
@@ -41,6 +41,14 @@ typedef enum ButtonComboModule_Buttons {
41
BCMPAD_BUTTON_TV = 0x00010000,
42
//! The reserved bit
43
BCMPAD_BUTTON_RESERVED_BIT = 0x80000,
44
+ //! The 1 button
45
+ BCMPAD_BUTTON_1 = 0x0001,
46
+ //! The 2 button
47
+ BCMPAD_BUTTON_2 = 0x0002,
48
+ //! The C button
49
+ BCMPAD_BUTTON_C = 0x100000,
50
+ //! The Z button
51
+ BCMPAD_BUTTON_Z = 0x200000,
52
} ButtonComboModule_Buttons;
53
WUT_ENUM_BITMASK_TYPE(ButtonComboModule_Buttons);
54
0 commit comments