Remove line that caused a memory leak
This commit is contained in:
Leonardo Montagner 2022-04-26 12:25:39 +02:00 committed by GitHub
parent a7ce537d32
commit 3580267479
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4643,7 +4643,6 @@ static Model LoadGLTF(const char *fileName)
// Load our model data: meshes and materials
model.meshCount = primitivesCount;
model.meshes = RL_CALLOC(model.meshCount, sizeof(Mesh));
for (int i = 0; i < model.meshCount; i++) model.meshes[i].vboId = (unsigned int*)RL_CALLOC(MAX_MESH_VERTEX_BUFFERS, sizeof(unsigned int));
// NOTE: We keep an extra slot for default material, in case some mesh requires it
model.materialCount = (int)data->materials_count + 1;