diff --git a/Limelight/StreamView.m b/Limelight/StreamView.m index 120ff3d..fb64153 100644 --- a/Limelight/StreamView.m +++ b/Limelight/StreamView.m @@ -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;