From b6b3fb00231ca6bea9b424218625e11c17c9c03c Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Fri, 2 Sep 2022 09:59:32 -0700 Subject: [PATCH] This was intended to be Uint8 --- src/joystick/hidapi/SDL_hidapi_wii.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/joystick/hidapi/SDL_hidapi_wii.c b/src/joystick/hidapi/SDL_hidapi_wii.c index 9fce4902f..e5988d66c 100644 --- a/src/joystick/hidapi/SDL_hidapi_wii.c +++ b/src/joystick/hidapi/SDL_hidapi_wii.c @@ -280,13 +280,13 @@ static SDL_bool ReadRegister(SDL_DriverWii_Context *ctx, Uint32 address, int siz static SDL_bool SendExtensionIdentify1(SDL_DriverWii_Context *ctx, SDL_bool sync) { - unsigned char data = 0x55; + Uint8 data = 0x55; return WriteRegister(ctx, 0xA400F0, &data, sizeof(data), sync); } static SDL_bool SendExtensionIdentify2(SDL_DriverWii_Context *ctx, SDL_bool sync) { - unsigned char data = 0x00; + Uint8 data = 0x00; return WriteRegister(ctx, 0xA400FB, &data, sizeof(data), sync); }