mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-25 17:14:59 +02:00
cleanups
This commit is contained in:
parent
76923583ee
commit
6f80c484b4
1 changed files with 1 additions and 1 deletions
|
@ -782,7 +782,7 @@ bool AvatarData::isJointDataValid(int index) const {
|
|||
Q_RETURN_ARG(bool, result), Q_ARG(int, index));
|
||||
return result;
|
||||
}
|
||||
return index < _jointData.size() /* && _jointData.at(index).valid */;
|
||||
return index < _jointData.size();
|
||||
}
|
||||
|
||||
glm::quat AvatarData::getJointRotation(int index) const {
|
||||
|
|
Loading…
Reference in a new issue