Android: Fixed ignoring a return value while handling motion events.

This should not have caused problems yet because the return value was identical.
Philipp Wiesemann 2016-01-26 22:20:05 +01:00
parent 67f9fd2bc4
commit 88f519372f
1 changed files with 1 additions and 2 deletions

View File

@ -1641,8 +1641,7 @@ class SDLGenericMotionListener_API12 implements View.OnGenericMotionListener {
case InputDevice.SOURCE_JOYSTICK: case InputDevice.SOURCE_JOYSTICK:
case InputDevice.SOURCE_GAMEPAD: case InputDevice.SOURCE_GAMEPAD:
case InputDevice.SOURCE_DPAD: case InputDevice.SOURCE_DPAD:
SDLActivity.handleJoystickMotionEvent(event); return SDLActivity.handleJoystickMotionEvent(event);
return true;
case InputDevice.SOURCE_MOUSE: case InputDevice.SOURCE_MOUSE:
action = event.getActionMasked(); action = event.getActionMasked();