Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Emscripten: Fixed opening previously closed joystick.
- Loading branch information
Showing
with
2 additions
and
0 deletions.
-
+2
−0
src/joystick/emscripten/SDL_sysjoystick.c
|
@@ -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 */ |
|
|