mirror of
https://github.com/HifiExperiments/overte.git
synced 2025-06-20 17:49:05 +02:00
Fix comment typo
This commit is contained in:
parent
f97dfaa3f0
commit
10e2cb1e09
1 changed files with 1 additions and 1 deletions
|
@ -1965,7 +1965,7 @@ bool GLTFSerializer::addArrayFromAccessor(GLTFAccessor& accessor, QVector<T>& ou
|
||||||
} else {
|
} else {
|
||||||
for (int i = 0; i < accessor.count; ++i) {
|
for (int i = 0; i < accessor.count; ++i) {
|
||||||
T value;
|
T value;
|
||||||
memset(&value, 0, sizeof(T)); // Make sure the dummy array is initalised to zero.
|
memset(&value, 0, sizeof(T)); // Make sure the dummy array is initialized to zero.
|
||||||
outarray.push_back(value);
|
outarray.push_back(value);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue