From 0c2e7d702871a983a48864a4fabf16f4ab22dcd7 Mon Sep 17 00:00:00 2001 From: Inusaito Sayori Date: Sun, 8 Jun 2014 09:05:39 -0400 Subject: [PATCH] Pressing up on right stick should turn the camera up in flycam, logically. (xbox controller) --- 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 e22882cd3..83dcc74c2 100644 --- a/indra/newview/llviewerjoystick.cpp +++ b/indra/newview/llviewerjoystick.cpp @@ -1351,7 +1351,7 @@ void LLViewerJoystick::setSNDefaults() gSavedSettings.setF32("FlycamAxisScale1", (xbox ? 16.f : 2.f) * platformScale); gSavedSettings.setF32("FlycamAxisScale2", (xbox ? 16.f : 2.f) * platformScale); gSavedSettings.setF32("FlycamAxisScale0", (xbox ? 25.f : 2.1f) * platformScale); // Z Scale - gSavedSettings.setF32("FlycamAxisScale4", (xbox ? 4.f : .1f) * platformScale); + gSavedSettings.setF32("FlycamAxisScale4", (xbox ? -4.f : .1f) * platformScale); gSavedSettings.setF32("FlycamAxisScale5", (xbox ? 4.f : .15f) * platformScale); gSavedSettings.setF32("FlycamAxisScale3", (xbox ? 4.f : 0.f) * platformScale); gSavedSettings.setF32("FlycamAxisScale6", (xbox ? 4.f : 0.f) * platformScale);