Fixed Android joystick detection

This commit is contained in:
Sam Lantinga 2017-10-19 15:37:52 -07:00
parent 729329068b
commit 2001898dce
1 changed files with 3 additions and 1 deletions

View File

@ -101,7 +101,9 @@ public class SDLControllerManager
Log.v(TAG, "Input device " + device.getName() + " is a gamepad.");
}
return ((sources & (InputDevice.SOURCE_CLASS_JOYSTICK|InputDevice.SOURCE_GAMEPAD)) != 0);
return (((sources & InputDevice.SOURCE_CLASS_JOYSTICK) == InputDevice.SOURCE_CLASS_JOYSTICK) ||
((sources & InputDevice.SOURCE_GAMEPAD) == InputDevice.SOURCE_GAMEPAD)
);
}
}