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:
Maschell 2017-04-10 11:02:58 +02:00
parent a6413d4fae
commit 73bf9bfb74

View File

@ -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;
/**