mirror of
https://github.com/moonlight-stream/moonlight-android.git
synced 2025-07-01 23:35:28 +00:00
Fix pen rotation values
This commit is contained in:
parent
d1579e9b0d
commit
daaa7f4e63
@ -1525,6 +1525,9 @@ public class Game extends Activity implements SurfaceHolder.Callback,
|
||||
if (dev != null) {
|
||||
if (dev.getMotionRange(MotionEvent.AXIS_ORIENTATION, event.getSource()) != null) {
|
||||
rotationDegrees = (short)Math.toDegrees(event.getOrientation(event.getActionIndex()));
|
||||
if (rotationDegrees < 0) {
|
||||
rotationDegrees += 360;
|
||||
}
|
||||
}
|
||||
if (dev.getMotionRange(MotionEvent.AXIS_TILT, event.getSource()) != null) {
|
||||
tiltDegrees = (byte)Math.toDegrees(event.getAxisValue(MotionEvent.AXIS_TILT, event.getActionIndex()));
|
||||
|
@ -1 +1 @@
|
||||
Subproject commit c8aac7f71cc0a94f3edbc2fad27a0915cad6fa16
|
||||
Subproject commit 44c8b95400db3664a087d346297232685c565f85
|
Loading…
x
Reference in New Issue
Block a user