SDL: Fixed build (44bec)

From 44bec9c01cc12673e32d94cd1e7b2557994277b2 Mon Sep 17 00:00:00 2001
From: Sam Lantinga <[EMAIL REDACTED]>
Date: Thu, 27 Apr 2023 13:06:21 -0700
Subject: [PATCH] Fixed build

---
 src/joystick/hidapi/SDL_hidapi_xboxone.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/joystick/hidapi/SDL_hidapi_xboxone.c b/src/joystick/hidapi/SDL_hidapi_xboxone.c
index 8edd397ef667..48c63b59bd5b 100644
--- a/src/joystick/hidapi/SDL_hidapi_xboxone.c
+++ b/src/joystick/hidapi/SDL_hidapi_xboxone.c
@@ -769,7 +769,7 @@ static void HIDAPI_DriverXboxOne_HandleStatePacket(SDL_Joystick *joystick, SDL_D
             button3_bit = 0x04;
             button4_bit = 0x08;
             paddles_mapped = (data[23] != 0);
-        } else if (size == 51) {
+        } else /* if (size == 51) */ {
             /* XBox One Elite Series 2 */
             paddle_index = 18;
             button1_bit = 0x01;