From 9d3e8818f78438615a3f1993020c29daaa53f210 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Tue, 28 Mar 2017 18:49:36 -0700 Subject: [PATCH] fix build --- plugins/hifiKinect/src/KinectPlugin.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/hifiKinect/src/KinectPlugin.cpp b/plugins/hifiKinect/src/KinectPlugin.cpp index 19b5c94297..8313ea0d49 100644 --- a/plugins/hifiKinect/src/KinectPlugin.cpp +++ b/plugins/hifiKinect/src/KinectPlugin.cpp @@ -398,7 +398,7 @@ void KinectPlugin::ProcessBody(INT64 time, int bodyCount, IBody** bodies) { if (SUCCEEDED(hr)) { auto jointCount = _countof(joints); if (_debug) { - qDebug() << __FUNCTION__ << "nBodyCount:" << nBodyCount << "body:" << i << "jointCount:" << jointCount; + qDebug() << __FUNCTION__ << "nBodyCount:" << bodyCount << "body:" << i << "jointCount:" << jointCount; } for (int j = 0; j < jointCount; ++j) { @@ -419,7 +419,7 @@ void KinectPlugin::ProcessBody(INT64 time, int bodyCount, IBody** bodies) { qDebug() << __FUNCTION__ << "joint[" << j << "]:" << jointName << "position:" << jointPosition << "orientation:" << jointOrientation - << "isTracked:" << joints[j].TrackingState != TrackingState_NotTracked; + << "isTracked:" << (joints[j].TrackingState != TrackingState_NotTracked); } // filling in the _joints data...