Some minor tweaks

This commit is contained in:
Ray
2024-09-20 17:32:01 +02:00
parent c09dadd9b5
commit e5d0cc978a
3 changed files with 5 additions and 2 deletions

View File

@@ -4377,7 +4377,7 @@ static Model LoadOBJ(const char *fileName)
}
// if this is a new material, we need to allocate a new mesh
if (lastMaterial != -1 && objAttributes.material_ids[faceId] != lastMaterial) newMesh = true;
lastMaterial = objAttributes.material_ids[faceId];;
lastMaterial = objAttributes.material_ids[faceId];
if (newMesh)
{