summaryrefslogtreecommitdiffhomepage
path: root/src/models.c
diff options
context:
space:
mode:
authorRay <[email protected]>2020-09-13 16:01:51 +0200
committerRay <[email protected]>2020-09-13 16:01:51 +0200
commit63b739bbfa9c68fba54c18415645e17f0f4faea6 (patch)
tree837a7550642c1fcc254a1ae4cf75bd067e3eaefe /src/models.c
parentdace2172d194c057359ccc101278d38cf2f75649 (diff)
downloadraylib-63b739bbfa9c68fba54c18415645e17f0f4faea6.tar.gz
raylib-63b739bbfa9c68fba54c18415645e17f0f4faea6.zip
Corrected issue on log
Diffstat (limited to 'src/models.c')
-rw-r--r--src/models.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/models.c b/src/models.c
index f2bac16a..ee71b44a 100644
--- a/src/models.c
+++ b/src/models.c
@@ -3679,8 +3679,8 @@ static Model LoadGLTF(const char *fileName)
if (result == cgltf_result_success)
{
- TRACELOG(LOG_INFO, "MODEL: [%s] glTF meshes (%s) count: %i", fileName, (data->file_type == 2)? "glb" : "gltf", data->meshes_count, data->materials_count);
- TRACELOG(LOG_INFO, "MODEL: [%s] glTF materials (%s) count: %i", fileName, (data->file_type == 2)? "glb" : "gltf", data->meshes_count, data->materials_count);
+ TRACELOG(LOG_INFO, "MODEL: [%s] glTF meshes (%s) count: %i", fileName, (data->file_type == 2)? "glb" : "gltf", data->meshes_count);
+ TRACELOG(LOG_INFO, "MODEL: [%s] glTF materials (%s) count: %i", fileName, (data->file_type == 2)? "glb" : "gltf", data->materials_count);
// Read data buffers
result = cgltf_load_buffers(&options, data, fileName);