mirror of
https://github.com/overte-org/overte.git
synced 2025-04-20 03:44:02 +02:00
fix warning
This commit is contained in:
parent
1309af6d7a
commit
8c2c05719a
1 changed files with 2 additions and 3 deletions
|
@ -114,9 +114,8 @@ public:
|
|||
}
|
||||
|
||||
QVector<JointData>& getLastOtherAvatarSentJoints(QUuid otherAvatar) {
|
||||
auto result = _lastOtherAvatarSentJoints[otherAvatar];
|
||||
result.resize(_avatar->getJointCount());
|
||||
return result;
|
||||
_lastOtherAvatarSentJoints[otherAvatar].resize(_avatar->getJointCount());
|
||||
return _lastOtherAvatarSentJoints[otherAvatar];
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue