Android: fix joystick saving incorrect y-coordinate

This commit is contained in:
Sean Maas 2016-09-19 18:03:30 -04:00 committed by GitHub
parent 22b5d89bf1
commit 001afae420
1 changed files with 1 additions and 1 deletions

View File

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