diff options
author | Narr the Reg <juangerman-13@hotmail.com> | 2023-11-20 16:53:33 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-20 16:53:33 -0600 |
commit | 8da5bd27e9d4fe5e850700039d79f77e52ba6aea (patch) | |
tree | f7092ca45b92aa83ef636cc13f970cd3561ba93e /src/core/hid | |
parent | 00dcf69ce88c5f146cd118d465b302c2513da7d1 (diff) | |
parent | cb004d1ba1bde740ba10418ac3f3cfd2db8ffac7 (diff) |
Merge pull request #12011 from Macj0rdan/controller-applet
Implemented qlaunch version of the controller applet
Diffstat (limited to 'src/core/hid')
-rw-r--r-- | src/core/hid/hid_types.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/core/hid/hid_types.h b/src/core/hid/hid_types.h index 9d48cd90e..70fcc6b69 100644 --- a/src/core/hid/hid_types.h +++ b/src/core/hid/hid_types.h @@ -218,6 +218,13 @@ enum class NpadIdType : u32 { Invalid = 0xFFFFFFFF, }; +enum class NpadInterfaceType : u8 { + Bluetooth = 1, + Rail = 2, + Usb = 3, + Embedded = 4, +}; + // This is nn::hid::NpadStyleIndex enum class NpadStyleIndex : u8 { None = 0, |