aboutsummaryrefslogtreecommitdiff
path: root/src/survive_cal.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/survive_cal.c')
-rwxr-xr-xsrc/survive_cal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/survive_cal.c b/src/survive_cal.c
index 5414048..ae92bad 100755
--- a/src/survive_cal.c
+++ b/src/survive_cal.c
@@ -141,7 +141,7 @@ void survive_cal_install( struct SurviveContext * ctx )
if (AllowAllTrackersForCal || isRequiredTracker)
{
- if (MAX_DEVICES_TO_CAL < cd->numPoseObjects)
+ if (MAX_DEVICES_TO_CAL > cd->numPoseObjects)
{
cd->poseobjects[j] = ctx->objs[j];
cd->numPoseObjects++;
@@ -150,7 +150,7 @@ void survive_cal_install( struct SurviveContext * ctx )
}
else
{
- SV_ERROR("Calibration is NOT using %s; device count exceeds MAX_DEVICES_TO_CAL", cd->poseobjects[j]->codename);
+ SV_INFO("Calibration is NOT using %s; device count exceeds MAX_DEVICES_TO_CAL", ctx->objs[j]->codename);
}
}