mirror of
https://github.com/overte-org/overte.git
synced 2025-04-16 00:41:16 +02:00
got rid of comparison warning
This commit is contained in:
parent
7d602986cd
commit
caf4a9fa34
1 changed files with 1 additions and 1 deletions
|
@ -1223,7 +1223,7 @@ void Rig::copyJointsIntoJointData(QVector<JointData>& jointDataVec) const {
|
|||
}
|
||||
|
||||
void Rig::copyJointsFromJointData(const QVector<JointData>& jointDataVec) {
|
||||
if (_animSkeleton && jointDataVec.size() == _internalPoseSet._overrideFlags.size()) {
|
||||
if (_animSkeleton && jointDataVec.size() == (int)_internalPoseSet._overrideFlags.size()) {
|
||||
|
||||
// transform all the default poses into rig space.
|
||||
const AnimPose geometryToRigPose(_geometryToRigTransform);
|
||||
|
|
Loading…
Reference in a new issue