Android: Fixed crash if closing removed joystick (thanks, Sylvain!).
Fixes fix for Bugzilla #3408.
This commit is contained in:
parent
d5a6c71aca
commit
ea2a180c90
1 changed files with 3 additions and 1 deletions
|
@ -539,7 +539,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;
|
||||||
|
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 */
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue