mirror of
https://github.com/Maschell/controller_patcher.git
synced 2024-11-22 03:59:16 +01:00
Fixed bug when having more than 9 config files
the maximum of controller configs were increased to 32, but the datatype was still u16 (which only has 16 bits). Changing it to u32 should finally fix all issues with the config files
This commit is contained in:
parent
a6413d4fae
commit
73bf9bfb74
@ -218,7 +218,7 @@ enum Controller_Patcher_DPAD_Settings
|
||||
*/
|
||||
typedef struct _HIDSlotData{
|
||||
u16 deviceslot; /**< deviceslot number */
|
||||
u16 hidmask; /**< Used HID-Mask */
|
||||
u32 hidmask; /**< Used HID-Mask */
|
||||
}HIDSlotData;
|
||||
|
||||
/**
|
||||
|
Loading…
Reference in New Issue
Block a user