Check to see if joysticks are actually initialized in SDL_UpdateJoysticks()

Fixes https://github.com/libsdl-org/SDL/issues/14362
This commit is contained in:
Sam Lantinga
2025-10-30 08:53:57 -07:00
parent a7147f327f
commit c21b7f8cb8

View File

@@ -2718,7 +2718,7 @@ void SDL_UpdateJoysticks(void)
Uint64 now;
SDL_Joystick *joystick;
if (!SDL_WasInit(SDL_INIT_JOYSTICK)) {
if (!SDL_joysticks_initialized) {
return;
}