From bcb0f1de2332c3bfa25d5cc484ac1786f55665eb Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Thu, 17 Mar 2022 08:52:31 -0700 Subject: [PATCH] Fixed build when events are disabled Fixes https://github.com/libsdl-org/SDL/issues/5413 --- src/joystick/SDL_joystick.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/joystick/SDL_joystick.c b/src/joystick/SDL_joystick.c index 47c67c99d..6a285c32c 100644 --- a/src/joystick/SDL_joystick.c +++ b/src/joystick/SDL_joystick.c @@ -2731,9 +2731,7 @@ int SDL_PrivateJoystickTouchpad(SDL_Joystick *joystick, int touchpad, int finger SDL_JoystickTouchpadInfo *touchpad_info; SDL_JoystickTouchpadFingerInfo *finger_info; int posted; -#if !SDL_EVENTS_DISABLED Uint32 event_type; -#endif if (touchpad < 0 || touchpad >= joystick->ntouchpads) { return 0; @@ -2777,7 +2775,6 @@ int SDL_PrivateJoystickTouchpad(SDL_Joystick *joystick, int touchpad, int finger } } -#if !SDL_EVENTS_DISABLED if (state == finger_info->state) { event_type = SDL_CONTROLLERTOUCHPADMOTION; } else if (state) { @@ -2785,7 +2782,6 @@ int SDL_PrivateJoystickTouchpad(SDL_Joystick *joystick, int touchpad, int finger } else { event_type = SDL_CONTROLLERTOUCHPADUP; } -#endif /* We ignore events if we don't have keyboard focus, except for touch release */ if (SDL_PrivateJoystickShouldIgnoreEvent()) {