Update mesh.h

Fix a typo.
pull/5223/head
Kim Kulling 2023-09-11 10:26:13 +02:00 committed by GitHub
parent 67a406df8b
commit 2c6c9b436d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -989,7 +989,7 @@ struct aiMesh {
// Construct and null-init array
mTextureCoordsNames = new aiString *[AI_MAX_NUMBER_OF_TEXTURECOORDS];
for (size_t i=0; i<AI_MAX_NUMBER_OF_TEXTURECOORDS; ++i) {
mTextureCoordsNames = nullptr;
mTextureCoordsNames[i] = nullptr;
}
}