From a98c477bc8228745e7de8d445098d8932e0ccaef Mon Sep 17 00:00:00 2001 From: Edward Rudd Date: Tue, 4 Feb 2014 15:40:51 -0500 Subject: [PATCH] allow safely quitting the hotplug test by pressing button 0 on the joystick --- test/testhotplug.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/test/testhotplug.c b/test/testhotplug.c index d4f64bb02aeaa..173ff2d1352be 100644 --- a/test/testhotplug.c +++ b/test/testhotplug.c @@ -113,6 +113,10 @@ main(int argc, char *argv[]) { SDL_HapticRumblePlay(haptic, 0.2, 250); } + if (event.jbutton.button == 0) { + SDL_Log("Exiting due to button press of button 0\n"); + keepGoing = SDL_FALSE; + } break; case SDL_JOYBUTTONUP: SDL_Log("Button Release: %d\n", event.jbutton.button);