mirror of https://github.com/encounter/SDL.git
Fix compile error
This commit is contained in:
parent
197b14de4a
commit
c2c5d0b392
|
@ -972,7 +972,7 @@ HIDAPI_DriverSteam_GetDeviceName(Uint16 vendor_id, Uint16 product_id)
|
||||||
static SDL_bool
|
static SDL_bool
|
||||||
HIDAPI_DriverSteam_InitDevice(SDL_HIDAPI_Device *device)
|
HIDAPI_DriverSteam_InitDevice(SDL_HIDAPI_Device *device)
|
||||||
{
|
{
|
||||||
return HIDAPI_JoystickConnected(device, NULL);
|
return HIDAPI_JoystickConnected(device, NULL, SDL_FALSE);
|
||||||
}
|
}
|
||||||
|
|
||||||
static int
|
static int
|
||||||
|
@ -1130,7 +1130,7 @@ HIDAPI_DriverSteam_UpdateDevice(SDL_HIDAPI_Device *device)
|
||||||
|
|
||||||
if (r <= 0) {
|
if (r <= 0) {
|
||||||
/* Failed to read from controller */
|
/* Failed to read from controller */
|
||||||
HIDAPI_JoystickDisconnected(device, device->joysticks[0]);
|
HIDAPI_JoystickDisconnected(device, device->joysticks[0], SDL_FALSE);
|
||||||
return SDL_FALSE;
|
return SDL_FALSE;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue