From 88f1a5ea7f2faea4ac7f965cab266f0224e58784 Mon Sep 17 00:00:00 2001 From: Maschell Date: Sat, 4 Jan 2025 12:41:15 +0100 Subject: [PATCH] Add missing wiimote buttons --- include/buttoncombo/defines.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/include/buttoncombo/defines.h b/include/buttoncombo/defines.h index 020bb46..eeef442 100644 --- a/include/buttoncombo/defines.h +++ b/include/buttoncombo/defines.h @@ -41,6 +41,14 @@ typedef enum ButtonComboModule_Buttons { BCMPAD_BUTTON_TV = 0x00010000, //! The reserved bit BCMPAD_BUTTON_RESERVED_BIT = 0x80000, + //! The 1 button + BCMPAD_BUTTON_1 = 0x0001, + //! The 2 button + BCMPAD_BUTTON_2 = 0x0002, + //! The C button + BCMPAD_BUTTON_C = 0x100000, + //! The Z button + BCMPAD_BUTTON_Z = 0x200000, } ButtonComboModule_Buttons; WUT_ENUM_BITMASK_TYPE(ButtonComboModule_Buttons);