mirror of
https://github.com/moonlight-stream/moonlight-embedded.git
synced 2026-04-23 00:26:42 +00:00
fixed typo that broke right stick on gamepads
This commit is contained in:
@@ -142,7 +142,7 @@ public class Gamepad {
|
|||||||
leftStickY = (short)Math.round(value * 0x7FFF);
|
leftStickY = (short)Math.round(value * 0x7FFF);
|
||||||
break;
|
break;
|
||||||
case RS_X:
|
case RS_X:
|
||||||
leftStickX = (short)Math.round(value * 0x7FFF);
|
rightStickX = (short)Math.round(value * 0x7FFF);
|
||||||
break;
|
break;
|
||||||
case RS_Y:
|
case RS_Y:
|
||||||
rightStickY = (short)Math.round(value * 0x7FFF);
|
rightStickY = (short)Math.round(value * 0x7FFF);
|
||||||
|
|||||||
Reference in New Issue
Block a user