Fix comment typo

This commit is contained in:
David Rowe 2021-03-28 16:42:03 +13:00
parent f97dfaa3f0
commit 10e2cb1e09

View file

@ -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);
}
}