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