Added missing const
Former-commit-id: 354757698554c187792e92f1d471c65b870c74d4
This commit is contained in:
parent
3409461c39
commit
fc5b1ade9b
|
|
@ -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];
|
||||
|
|
|
|||
Loading…
Reference in New Issue