Added missing const

Former-commit-id: 354757698554c187792e92f1d471c65b870c74d4
This commit is contained in:
Lynix 2013-01-29 02:01:54 +01:00
parent 3409461c39
commit fc5b1ade9b
1 changed files with 2 additions and 2 deletions

View File

@ -293,8 +293,8 @@ void NzSkeleton::Interpolate(const NzSkeleton& skeletonA, const NzSkeleton& skel
}
#endif
NzJoint* jointsA = &skeletonA.m_impl->joints[0];
NzJoint* jointsB = &skeletonB.m_impl->joints[0];
const NzJoint* jointsA = &skeletonA.m_impl->joints[0];
const NzJoint* jointsB = &skeletonB.m_impl->joints[0];
for (unsigned int i = 0; i < indiceCount; ++i)
{
unsigned int index = indices[i];