Linux: Search a smaller set of potential joystick axes.

Newer kernels seem to report bogus axes in the higher ranges, for example
 with a standard PlayStation 3 controller plugged in via USB.

--HG--
branch : SDL-1.2
This commit is contained in:
Ryan C. Gordon 2011-07-13 17:36:29 -07:00
parent 2468efa6b8
commit e296b4d8ec

View file

@ -703,7 +703,7 @@ static SDL_bool EV_ConfigJoystick(SDL_Joystick *joystick, int fd)
++joystick->nbuttons;
}
}
for ( i=0; i<ABS_MAX; ++i ) {
for ( i=0; i<ABS_MISC; ++i ) {
/* Skip hats */
if ( i == ABS_HAT0X ) {
i = ABS_HAT3Y;