Skip to content

Commit

Permalink
hidapi: Fix compiler warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed May 20, 2020
1 parent c9d358b commit 5fe34a4
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions src/joystick/hidapi/SDL_hidapi_xbox360.c
Expand Up @@ -271,6 +271,8 @@ HIDAPI_DriverXbox360_GuessXInputSlot(const WindowsMatchState *state, Uint8 *corr
int user_index;
int match_count;

*slot_idx = 0;

match_count = 0;
for (user_index = 0; user_index < XUSER_MAX_COUNT; ++user_index) {
if (!xinput_state[user_index].used && HIDAPI_DriverXbox360_XInputSlotMatches(state, user_index)) {
Expand Down Expand Up @@ -1155,8 +1157,8 @@ HIDAPI_DriverXbox360_UpdateOtherAPIs(SDL_HIDAPI_Device *device, SDL_Joystick *jo
if (!ctx->xinput_correlated) {
SDL_bool new_correlation_count = 0;
if (HIDAPI_DriverXbox360_MissingXInputSlot()) {
Uint8 correlation_id;
Uint8 slot_idx;
Uint8 correlation_id = 0;
Uint8 slot_idx = 0;
if (HIDAPI_DriverXbox360_GuessXInputSlot(&match_state_xinput, &correlation_id, &slot_idx)) {
/* we match exactly one XInput device */
/* Probably can do without xinput_correlation_count, just check and clear xinput_slot to ANY, unless
Expand Down

0 comments on commit 5fe34a4

Please sign in to comment.