mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-08 12:22:12 +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 {
|
||||
for (int i = 0; i < accessor.count; ++i) {
|
||||
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);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue