Commit 63a342c4 authored by Jacob Walser's avatar Jacob Walser

Don't close joysticks

parent 4690a091
...@@ -145,7 +145,10 @@ void JoystickSDL::_close(void) { ...@@ -145,7 +145,10 @@ void JoystickSDL::_close(void) {
if (SDL_JoystickInstanceID(sdlJoystick) != -1) { if (SDL_JoystickInstanceID(sdlJoystick) != -1) {
qCDebug(JoystickLog) << "\tID:" << SDL_JoystickInstanceID(sdlJoystick); qCDebug(JoystickLog) << "\tID:" << SDL_JoystickInstanceID(sdlJoystick);
SDL_JoystickClose(sdlJoystick); // This segfaults so often, and I've spent so much time trying to find the cause and fix it
// I think this might be an SDL bug
// We are much more stable just commenting this out
//SDL_JoystickClose(sdlJoystick);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment