Fixed crash if the GameCube controller hasn't been opened yet
parent
091a4649e8
commit
2cc70ca39e
|
@ -253,6 +253,10 @@ HIDAPI_DriverGameCube_HandleJoystickPacket(SDL_HIDAPI_Device *device, SDL_Driver
|
||||||
}
|
}
|
||||||
|
|
||||||
joystick = SDL_JoystickFromInstanceID(ctx->joysticks[i]);
|
joystick = SDL_JoystickFromInstanceID(ctx->joysticks[i]);
|
||||||
|
if (!joystick) {
|
||||||
|
/* Hasn't been opened yet, skip */
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
#define READ_BUTTON(off, flag, button) \
|
#define READ_BUTTON(off, flag, button) \
|
||||||
SDL_PrivateJoystickButton( \
|
SDL_PrivateJoystickButton( \
|
||||||
|
|
Loading…
Reference in New Issue