mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2024-12-16 11:06:49 +01:00
Emscripten: Fixed crash if closing removed joystick (thanks, Sylvain!).
This commit is contained in:
parent
e41e185eab
commit
e79f00097a
@ -378,7 +378,9 @@ void
|
|||||||
SDL_SYS_JoystickClose(SDL_Joystick * joystick)
|
SDL_SYS_JoystickClose(SDL_Joystick * joystick)
|
||||||
{
|
{
|
||||||
SDL_joylist_item *item = (SDL_joylist_item *) joystick->hwdata;
|
SDL_joylist_item *item = (SDL_joylist_item *) joystick->hwdata;
|
||||||
item->joystick = NULL;
|
if (item) {
|
||||||
|
item->joystick = NULL;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Function to perform any system-specific joystick related cleanup */
|
/* Function to perform any system-specific joystick related cleanup */
|
||||||
|
Loading…
Reference in New Issue
Block a user