Skip to content

Commit

Permalink
Android: Fixed opening previously closed joystick (thanks, Sylvain!).
Browse files Browse the repository at this point in the history
Fixes Bugzilla #3408.
  • Loading branch information
philippwiesemann committed Aug 17, 2016
1 parent 8097f27 commit c18ff8d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/joystick/android/SDL_sysjoystick.c
Expand Up @@ -538,6 +538,8 @@ SDL_SYS_JoystickUpdate(SDL_Joystick * joystick)
void
SDL_SYS_JoystickClose(SDL_Joystick * joystick)
{
SDL_joylist_item *item = (SDL_joylist_item *) joystick->hwdata;
item->joystick = NULL;
}

/* Function to perform any system-specific joystick related cleanup */
Expand Down

0 comments on commit c18ff8d

Please sign in to comment.