From 18a48e6609b532e6af51d7a7be42256b9e2a888a Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Wed, 14 May 2014 23:16:55 -0400 Subject: [PATCH] Fix the inverted mouse issue. --- indra/newview/llviewerjoystick.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/llviewerjoystick.cpp b/indra/newview/llviewerjoystick.cpp index 9b2390349..42fae4fa2 100644 --- a/indra/newview/llviewerjoystick.cpp +++ b/indra/newview/llviewerjoystick.cpp @@ -869,7 +869,7 @@ void LLViewerJoystick::moveAvatar(bool reset) if (sControlCursor) { cursorSlide(sDelta[X_I]); // left / right - cursorPush(sDelta[Z_I]); // up / down + cursorPush(-sDelta[Z_I]); // up / down cursorZoom(sDelta[RX_I]); // mousewheel return; }