mirror of
https://github.com/Relintai/sdl2_frt.git
synced 2025-01-26 12:59:18 +01:00
Android: Fixed crash if closing removed joystick (thanks, Sylvain!).
Fixes fix for Bugzilla #3408.
This commit is contained in:
parent
5150eb361f
commit
e41e185eab
@ -539,8 +539,10 @@ 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;
|
||||||
|
if (item) {
|
||||||
item->joystick = NULL;
|
item->joystick = NULL;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* Function to perform any system-specific joystick related cleanup */
|
/* Function to perform any system-specific joystick related cleanup */
|
||||||
void
|
void
|
||||||
|
Loading…
Reference in New Issue
Block a user