Browse Source

Fixed polling values after SYN_DROPPED event

Sam Lantinga 4 years ago
parent
commit
0ccb3afd37
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/joystick/linux/SDL_sysjoystick.c

+ 1 - 1
src/joystick/linux/SDL_sysjoystick.c

@@ -1145,7 +1145,7 @@ PollAllValues(SDL_Joystick *joystick)
             i = ABS_HAT3Y;
             continue;
         }
-        if (joystick->hwdata->abs_correct[i].used) {
+        if (joystick->hwdata->has_abs[i]) {
             if (ioctl(joystick->hwdata->fd, EVIOCGABS(i), &absinfo) >= 0) {
                 absinfo.value = AxisCorrect(joystick, i, absinfo.value);