summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2019-10-30 12:44:31 -0400
committerNat Goodspeed <nat@lindenlab.com>2020-03-25 19:05:17 -0400
commit6e093662571195dbca8ba13027beeeb4afe88de6 (patch)
treeb2de1c544d21edfd14d1e1cd1106fc2011f48f28 /indra/newview
parentbf3c04ac38d589895906a6b9b5d63484f109a364 (diff)
DRTVWR-476: Update llviewerjoystick.cpp for updated libndofdev API.
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llviewerjoystick.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llviewerjoystick.cpp b/indra/newview/llviewerjoystick.cpp
index 320bd04fe8..3d06c95080 100644
--- a/indra/newview/llviewerjoystick.cpp
+++ b/indra/newview/llviewerjoystick.cpp
@@ -145,7 +145,7 @@ NDOF_HotPlugResult LLViewerJoystick::HotPlugAddCallback(NDOF_Device *dev)
if (joystick->mDriverState == JDS_UNINITIALIZED)
{
LL_INFOS("joystick") << "HotPlugAddCallback: will use device:" << LL_ENDL;
- ndof_dump(dev);
+ ndof_dump(stderr, dev);
joystick->mNdofDev = dev;
joystick->mDriverState = JDS_INITIALIZED;
res = NDOF_KEEP_HOTPLUGGED;
@@ -164,7 +164,7 @@ void LLViewerJoystick::HotPlugRemovalCallback(NDOF_Device *dev)
{
LL_INFOS("joystick") << "HotPlugRemovalCallback: joystick->mNdofDev="
<< joystick->mNdofDev << "; removed device:" << LL_ENDL;
- ndof_dump(dev);
+ ndof_dump(stderr, dev);
joystick->mDriverState = JDS_UNINITIALIZED;
}
joystick->updateEnabled(true);
@@ -255,7 +255,7 @@ void LLViewerJoystick::init(bool autoenable)
{
mDriverState = JDS_UNINITIALIZED;
LL_WARNS("joystick") << "ndof_init_first FAILED" << LL_ENDL;
- ndof_dump_list();
+ ndof_dump_list(stderr);
}
else
{