Parcourir la source
Update rcore_desktop_sdl.c
raylib app crashing when started and a gamepad is already connected to the PC (even if the gamepad is not used in the app). I only tested this with a gamepad that has a layout which is not recognized. Using SDL3 as backend.
pull/4859/head
MikiZX1
il y a 1 semaine
committed by
GitHub
Parent
révision
55c6864092
Aucune clé connue n'a été trouvée dans la base pour cette signature
ID de la clé GPG: B5690EEEBB952194
1 fichiers modifiés avec
1 ajouts et
1 suppressions
src/platforms/rcore_desktop_sdl.c
@ -1670,7 +1670,7 @@ void PollInputEvents(void)
{
int jid = event . jdevice . which ; / / Joystick device index
if ( o">! CORE . Input . Gamepad . ready [ jid ] & & ( jid < MAX_GAMEPADS ) )
if ( CORE . Input . Gamepad . ready [ jid ] & & ( jid < MAX_GAMEPADS ) )
{
platform . gamepad [ jid ] = SDL_GameControllerOpen ( jid ) ;
platform . gamepadId [ jid ] = SDL_JoystickInstanceID ( SDL_GameControllerGetJoystick ( platform . gamepad [ jid ] ) ) ;