mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-26 14:12:31 +00:00
Fix inverted mouse movement
This commit is contained in:
parent
42773241c1
commit
f133f293b8
@ -29,8 +29,8 @@
|
|||||||
if (touchLocation.x != currentLocation.x ||
|
if (touchLocation.x != currentLocation.x ||
|
||||||
touchLocation.y != currentLocation.y)
|
touchLocation.y != currentLocation.y)
|
||||||
{
|
{
|
||||||
LiSendMouseMoveEvent(touchLocation.x - currentLocation.x,
|
LiSendMouseMoveEvent(currentLocation.x - touchLocation.x,
|
||||||
touchLocation.y - currentLocation.y);
|
currentLocation.y - touchLocation.y );
|
||||||
|
|
||||||
touchMoved = true;
|
touchMoved = true;
|
||||||
touchLocation = currentLocation;
|
touchLocation = currentLocation;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user