From 3b222bfd2a0a7ed434af34f1fea339d6951bb050 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 4 Jan 2025 12:39:13 +0100 Subject: [PATCH] ButtonComboAPI: Add missing wiimote buttons --- include/wups/button_combo/defines.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/wups/button_combo/defines.h b/include/wups/button_combo/defines.h index 0396f0f..e3dddb2 100644 --- a/include/wups/button_combo/defines.h +++ b/include/wups/button_combo/defines.h @@ -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);