Commit 7aec0b90ee58f61a44911be305a9a4ccb559e7ab

Ozkan Sezer 2021-08-13T01:56:56

SDL_hidapi_xboxone.c: fix bogus 'uninitialized' warning from clang. The last 'size == 50' check is always true anyway.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/joystick/hidapi/SDL_hidapi_xboxone.c b/src/joystick/hidapi/SDL_hidapi_xboxone.c
index 259a6fe..7cf1fbf 100644
--- a/src/joystick/hidapi/SDL_hidapi_xboxone.c
+++ b/src/joystick/hidapi/SDL_hidapi_xboxone.c
@@ -558,7 +558,7 @@ HIDAPI_DriverXboxOne_HandleStatePacket(SDL_Joystick *joystick, SDL_DriverXboxOne
             button4_bit = 0x08;
             paddles_mapped = (data[19] != 0);
 
-        } else if (size == 50) {
+        } else /* if (size == 50) */{
             /* XBox One Elite Series 2 */
             paddle_index = 22;
             button1_bit = 0x01;