Fix compile error
diff --git a/src/joystick/hidapi/SDL_hidapi_steam.c b/src/joystick/hidapi/SDL_hidapi_steam.c
index e0e1dce..e81ca1f 100644
--- a/src/joystick/hidapi/SDL_hidapi_steam.c
+++ b/src/joystick/hidapi/SDL_hidapi_steam.c
@@ -972,7 +972,7 @@ HIDAPI_DriverSteam_GetDeviceName(Uint16 vendor_id, Uint16 product_id)
static SDL_bool
HIDAPI_DriverSteam_InitDevice(SDL_HIDAPI_Device *device)
{
- return HIDAPI_JoystickConnected(device, NULL);
+ return HIDAPI_JoystickConnected(device, NULL, SDL_FALSE);
}
static int
@@ -1130,7 +1130,7 @@ HIDAPI_DriverSteam_UpdateDevice(SDL_HIDAPI_Device *device)
if (r <= 0) {
/* Failed to read from controller */
- HIDAPI_JoystickDisconnected(device, device->joysticks[0]);
+ HIDAPI_JoystickDisconnected(device, device->joysticks[0], SDL_FALSE);
return SDL_FALSE;
}
}