Explorar el Código

SDL_hidapi_xboxone.c: fix bogus 'uninitialized' warning from clang.

The last 'size == 50' check is always true anyway.
Ozkan Sezer hace 4 años
padre
commit
7aec0b90ee
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/joystick/hidapi/SDL_hidapi_xboxone.c

+ 1 - 1
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;