From f133f293b88c5a06f1c081158f93f6d170b8d77e Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Mon, 20 Oct 2014 03:29:00 -0400 Subject: [PATCH] Fix inverted mouse movement --- Limelight/StreamView.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;