mirror of
https://thingvellir.net/git/overte
synced 2025-03-27 23:52:03 +01:00
change BUG to FIXME
This commit is contained in:
parent
d876251f1e
commit
1df3b59aa1
1 changed files with 2 additions and 2 deletions
|
@ -689,7 +689,7 @@ void AvatarData::clearJointData(int index) {
|
|||
return;
|
||||
}
|
||||
QWriteLocker writeLock(&_jointDataLock);
|
||||
// BUG: I don't understand how this "clears" the joint data at index
|
||||
// FIXME: I don't understand how this "clears" the joint data at index
|
||||
if (_jointData.size() <= index) {
|
||||
_jointData.resize(index + 1);
|
||||
}
|
||||
|
@ -888,7 +888,7 @@ void AvatarData::setJointTranslations(QVector<glm::vec3> jointTranslations) {
|
|||
}
|
||||
|
||||
void AvatarData::clearJointsData() {
|
||||
// BUG: this method is terribly inefficient and probably doesn't even work
|
||||
// FIXME: this method is terribly inefficient and probably doesn't even work
|
||||
// (see implementation of clearJointData(index))
|
||||
for (int i = 0; i < _jointData.size(); ++i) {
|
||||
clearJointData(i);
|
||||
|
|
Loading…
Reference in a new issue