diff options
author | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2015-08-20 22:51:56 -0400 |
---|---|---|
committer | Brad Payne (Vir Linden) <vir@lindenlab.com> | 2015-08-20 22:51:56 -0400 |
commit | 0f9700af5b18b2ddd1eed10b34c4ad5d9a09ee7e (patch) | |
tree | 3be055533cf1423aa2bd5fec99bd5287c0efebad /indra/newview/lldrawpoolavatar.cpp | |
parent | fbe58c1bdf565c95e01d67a98faa6f3d00b4df0c (diff) | |
parent | d0eed685023fca913e643d3e90e97e5dc6914a99 (diff) |
merge
Diffstat (limited to 'indra/newview/lldrawpoolavatar.cpp')
-rwxr-xr-x | indra/newview/lldrawpoolavatar.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indra/newview/lldrawpoolavatar.cpp b/indra/newview/lldrawpoolavatar.cpp index 821d58a9b2..f828b56f7f 100755 --- a/indra/newview/lldrawpoolavatar.cpp +++ b/indra/newview/lldrawpoolavatar.cpp @@ -1600,6 +1600,14 @@ void LLDrawPoolAvatar::updateRiggedFaceVertexBuffer(LLVOAvatar* avatar, LLFace* for (U32 j = 0; j < count; ++j) { LLJoint* joint = avatar->getJoint(skin->mJointNames[j]); + if (!joint) + { + joint = avatar->getJoint("mPelvis"); + } + if (!joint) + { + LL_DEBUGS("Avatar") << "Failed to find " << skin->mJointNames[j] << LL_ENDL; + } if (joint) { mat[j] = skin->mInvBindMatrix[j]; |