Commit 39c41bb952d29df7e1e4e6884390f086dcd81194

Philipp Wiesemann 2015-02-10T20:40:03

Fixed bug 2873 - Joystick test won't reload after reattach lectem -plug in the joystick -start testjoystick 0 -unplug -replug The joystick is detected but doesn't enter the loop anymore since done==SDL_TRUE

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/test/testjoystick.c b/test/testjoystick.c
index 232213a..3b2b5bf 100644
--- a/test/testjoystick.c
+++ b/test/testjoystick.c
@@ -176,7 +176,7 @@ WatchJoystick(SDL_Joystick * joystick)
 {
     SDL_Window *window = NULL;
     const char *name = NULL;
-
+    done = SDL_FALSE;
 
     /* Create a window to display joystick axis position */
     window = SDL_CreateWindow("Joystick Test", SDL_WINDOWPOS_CENTERED,