diff options
author | Ansariel <none@none> | 2012-09-20 20:23:54 +0200 |
---|---|---|
committer | Ansariel <none@none> | 2012-09-20 20:23:54 +0200 |
commit | 1282cd91d18fe74016b58474b7d3afbc99c29aac (patch) | |
tree | 47d6fc42aa04eebb598ed8d0f099a4d5e065dec1 /indra | |
parent | bc34217979c0a692b17de7ffcb524ed2418da967 (diff) |
Crash fix for non finite target in editing motion
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llcharacter/lleditingmotion.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/indra/llcharacter/lleditingmotion.cpp b/indra/llcharacter/lleditingmotion.cpp index 66b3c2bd25..0d0b85ba60 100644 --- a/indra/llcharacter/lleditingmotion.cpp +++ b/indra/llcharacter/lleditingmotion.cpp @@ -214,8 +214,10 @@ BOOL LLEditingMotion::onUpdate(F32 time, U8* joint_mask) target = target * target_dist; if (!target.isFinite()) { - llerrs << "Non finite target in editing motion with target distance of " << target_dist << + // Don't error out here, set a fail-safe target vector + llwarns << "Non finite target in editing motion with target distance of " << target_dist << " and focus point " << focus_pt << llendl; + target.setVec(1.f, 1.f, 1.f); } mTarget.setPosition( target + mParentJoint.getPosition()); |