mirror of
https://github.com/overte-org/overte.git
synced 2025-04-19 12:23:24 +02:00
fix warning about signed unsigned compare
This commit is contained in:
parent
5847f86db8
commit
30d7ffb303
1 changed files with 1 additions and 1 deletions
|
@ -1335,7 +1335,7 @@ void Rig::copyJointsFromJointData(const QVector<JointData>& jointDataVec) {
|
|||
_animSkeleton->convertAbsoluteRotationsToRelative(rotations);
|
||||
|
||||
// store new relative poses
|
||||
if (numJoints != _internalPoseSet._relativePoses.size()) {
|
||||
if (numJoints != (int)_internalPoseSet._relativePoses.size()) {
|
||||
_internalPoseSet._relativePoses = _animSkeleton->getRelativeDefaultPoses();
|
||||
}
|
||||
const AnimPoseVec& relativeDefaultPoses = _animSkeleton->getRelativeDefaultPoses();
|
||||
|
|
Loading…
Reference in a new issue