Merge pull request #791 from Ragora/bugfix-sdl-fallthrough

BugFix: Correct invalid fall-through behavior in sdlInputManager.cpp.
This commit is contained in:
Brian Roberts 2022-05-25 18:29:09 -05:00 committed by GitHub
commit e896e663d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -303,6 +303,7 @@ void SDLInputManager::processEvent(SDL_Event &evt)
{
onSDLDeviceDisconnected_callback(evt.jdevice.which);
closeJoystick(evt.jdevice.which);
break;
}
case SDL_CONTROLLERAXISMOTION: