diff --git a/sc2/src/sc2code/libs/input/sdl/vcontrol.c b/sc2/src/sc2code/libs/input/sdl/vcontrol.c index 4169d441d..d95404817 100644 --- a/sc2/src/sc2code/libs/input/sdl/vcontrol.c +++ b/sc2/src/sc2code/libs/input/sdl/vcontrol.c @@ -1362,7 +1362,8 @@ parse_joybinding (parse_state *state, int *target) { if (VControl_AddJoyAxisBinding (sticknum, axisnum, polarity, target)) { - state->error = 1; + // Don't count this as an error + // state->error = 1; } } } @@ -1376,7 +1377,8 @@ parse_joybinding (parse_state *state, int *target) { if (VControl_AddJoyButtonBinding (sticknum, buttonnum, target)) { - state->error = 1; + // Don't count this as an error + // state->error = 1; } } } @@ -1392,7 +1394,8 @@ parse_joybinding (parse_state *state, int *target) { if (VControl_AddJoyHatBinding (sticknum, hatnum, dir, target)) { - state->error = 1; + // Don't count this as an error + // state->error = 1; } } }