Skip to content

Commit

Permalink
Emscripten: Fixed opening previously closed joystick.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Aug 17, 2016
1 parent c18ff8d commit a128552
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/joystick/emscripten/SDL_sysjoystick.c
Expand Up @@ -377,6 +377,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 a128552

Please sign in to comment.