Merge pull request #4229 from SeannyM/android-joystick

Android: fix joystick saving incorrect y-coordinate
This commit is contained in:
Markus Wick 2016-09-20 07:03:15 +02:00 committed by GitHub
commit 023eb34247
1 changed files with 1 additions and 1 deletions

View File

@ -233,7 +233,7 @@ public final class InputOverlay extends SurfaceView implements OnTouchListener
case MotionEvent.ACTION_POINTER_UP: case MotionEvent.ACTION_POINTER_UP:
if (mJoystickBeingConfigured != null) if (mJoystickBeingConfigured != null)
{ {
saveControlPosition(mJoystickBeingConfigured.getSharedPrefsId(), mJoystickBeingConfigured.getBounds().left, mJoystickBeingConfigured.getBounds().right); saveControlPosition(mJoystickBeingConfigured.getSharedPrefsId(), mJoystickBeingConfigured.getBounds().left, mJoystickBeingConfigured.getBounds().top);
mJoystickBeingConfigured = null; mJoystickBeingConfigured = null;
} }
break; break;