summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterjoystick.cpp
diff options
context:
space:
mode:
authorRichard Linden <none@none>2013-09-26 11:34:07 -0700
committerRichard Linden <none@none>2013-09-26 11:34:07 -0700
commit4db06820f0a89d480a3d5c49c26313a3bb78544d (patch)
treeb244e4f09e6ff568e418eb41c9fd519b9fb1e633 /indra/newview/llfloaterjoystick.cpp
parent6115125dd2b065d7083357b02665d93d47468285 (diff)
fix for display of joystick statbar monitors
Diffstat (limited to 'indra/newview/llfloaterjoystick.cpp')
-rwxr-xr-xindra/newview/llfloaterjoystick.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/indra/newview/llfloaterjoystick.cpp b/indra/newview/llfloaterjoystick.cpp
index adcecbbb7a..b7fff6cae3 100755
--- a/indra/newview/llfloaterjoystick.cpp
+++ b/indra/newview/llfloaterjoystick.cpp
@@ -42,20 +42,20 @@
#include "llviewerjoystick.h"
#include "llcheckboxctrl.h"
-static LLTrace::SampleStatHandle<> sJoystickAxis1("Joystick axis 1"),
+static LLTrace::SampleStatHandle<> sJoystickAxis0("Joystick axis 0"),
+ sJoystickAxis1("Joystick axis 1"),
sJoystickAxis2("Joystick axis 2"),
sJoystickAxis3("Joystick axis 3"),
sJoystickAxis4("Joystick axis 4"),
- sJoystickAxis5("Joystick axis 5"),
- sJoystickAxis6("Joystick axis 6");
+ sJoystickAxis5("Joystick axis 5");
static LLTrace::SampleStatHandle<>* sJoystickAxes[6] =
{
+ &sJoystickAxis0,
&sJoystickAxis1,
&sJoystickAxis2,
&sJoystickAxis3,
&sJoystickAxis4,
- &sJoystickAxis5,
- &sJoystickAxis6
+ &sJoystickAxis5
};
LLFloaterJoystick::LLFloaterJoystick(const LLSD& data)