Fix the inverted mouse issue.

This commit is contained in:
Inusaito Sayori
2014-05-14 23:16:55 -04:00
parent 929b75989c
commit 18a48e6609

View File

@@ -869,7 +869,7 @@ void LLViewerJoystick::moveAvatar(bool reset)
if (sControlCursor) if (sControlCursor)
{ {
cursorSlide(sDelta[X_I]); // left / right cursorSlide(sDelta[X_I]); // left / right
cursorPush(sDelta[Z_I]); // up / down cursorPush(-sDelta[Z_I]); // up / down
cursorZoom(sDelta[RX_I]); // mousewheel cursorZoom(sDelta[RX_I]); // mousewheel
return; return;
} }