diff options
Diffstat (limited to '')
| -rw-r--r-- | src/input_common/sdl/sdl_impl.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/input_common/sdl/sdl_impl.cpp b/src/input_common/sdl/sdl_impl.cpp index c918a333d..288557968 100644 --- a/src/input_common/sdl/sdl_impl.cpp +++ b/src/input_common/sdl/sdl_impl.cpp | |||
| @@ -267,7 +267,9 @@ void SDLState::CloseJoystick(SDL_Joystick* sdl_joystick) { | |||
| 267 | return joystick->GetSDLJoystick() == sdl_joystick; | 267 | return joystick->GetSDLJoystick() == sdl_joystick; |
| 268 | }); | 268 | }); |
| 269 | 269 | ||
| 270 | (*joystick_it)->SetSDLJoystick(nullptr, nullptr); | 270 | if (joystick_it != joystick_guid_list.end()) { |
| 271 | (*joystick_it)->SetSDLJoystick(nullptr, nullptr); | ||
| 272 | } | ||
| 271 | } | 273 | } |
| 272 | 274 | ||
| 273 | void SDLState::HandleGameControllerEvent(const SDL_Event& event) { | 275 | void SDLState::HandleGameControllerEvent(const SDL_Event& event) { |