Skip to content

Commit

Permalink
ButtonComboAPI: Add missing wiimote buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
Maschell committed Jan 4, 2025
1 parent 60341d0 commit 3b222bf
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions include/wups/button_combo/defines.h
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,14 @@ typedef enum WUPSButtonCombo_Buttons {
WUPS_BUTTON_COMBO_BUTTON_TV = 0x00010000,
//! The reserved bit
WUPS_BUTTON_COMBO_BUTTON_RESERVED_BIT = 0x80000,
//! The 1 button
WUPS_BUTTON_COMBO_BUTTON_1 = 0x0001,
//! The 2 button
WUPS_BUTTON_COMBO_BUTTON_2 = 0x0002,
//! The C button
WUPS_BUTTON_COMBO_BUTTON_C = 0x100000,
//! The Z button
WUPS_BUTTON_COMBO_BUTTON_Z = 0x200000,
} WUPSButtonCombo_Buttons;
WUT_ENUM_BITMASK_TYPE(WUPSButtonCombo_Buttons);

Expand Down

0 comments on commit 3b222bf

Please sign in to comment.