Source change to make GCC happy.

master
Nicky 2016-10-10 00:59:54 +02:00
parent 03b6cb6e8e
commit 1ff2ac48a0
1 changed files with 2 additions and 1 deletions

View File

@ -718,7 +718,8 @@ BOOL LLAvatarAppearance::allocateCharacterJoints( S32 num )
if (mSkeleton.size() != num)
{
clearSkeleton();
mSkeleton = avatar_joint_list_t(num,NULL);
// mSkeleton = avatar_joint_list_t(num,NULL);
mSkeleton = avatar_joint_list_t(num, static_cast< LLAvatarJoint*>( NULL ));
mNumBones = num;
}