Update rmodels.c

This commit is contained in:
Ray 2023-10-31 20:20:11 +01:00
parent 43f36b9b05
commit 15142a30f5

View file

@ -3984,7 +3984,7 @@ static Model LoadOBJ(const char *fileName)
model.meshMaterial[i] = 0; // By default, assign material 0 to each mesh model.meshMaterial[i] = 0; // By default, assign material 0 to each mesh
// Process all mesh faces // Process all mesh faces
for (unsigned int face = 0, f = meshes[i].face_offset, v = 0, vt = 0, vn = 0; face < tris; face++, f++, v += 3, vt += 2, vn += 3) for (unsigned int face = 0, f = meshes[i].face_offset, v = 0, vt = 0, vn = 0; face < tris; face++, f++, v += 3, vt += 3, vn += 3)
{ {
// Get indices for the face // Get indices for the face
tinyobj_vertex_index_t idx0 = attrib.faces[f*3 + 0]; tinyobj_vertex_index_t idx0 = attrib.faces[f*3 + 0];