summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorRay <[email protected]>2020-02-17 00:46:41 +0100
committerRay <[email protected]>2020-02-17 00:46:41 +0100
commitdf4b55d657ebae239d01abd1966602d735a19244 (patch)
treec412a277ab86c7a4a70de9e34e82133a84730a0a /src
parent80dbbef0f5bc744f06c4ce8fb362a7bda12a6ca5 (diff)
downloadraylib-df4b55d657ebae239d01abd1966602d735a19244.tar.gz
raylib-df4b55d657ebae239d01abd1966602d735a19244.zip
Comment fprintf() calls
Diffstat (limited to 'src')
-rw-r--r--src/external/tinyobj_loader_c.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/external/tinyobj_loader_c.h b/src/external/tinyobj_loader_c.h
index 242b47d8..7ef55ff9 100644
--- a/src/external/tinyobj_loader_c.h
+++ b/src/external/tinyobj_loader_c.h
@@ -748,7 +748,7 @@ static int tinyobj_parse_and_index_mtl_file(tinyobj_material_t **materials_out,
fp = fopen(filename, "r");
if (!fp) {
- fprintf(stderr, "TINYOBJ: Error reading file '%s': %s (%d)\n", filename, strerror(errno), errno);
+ //fprintf(stderr, "TINYOBJ: Error reading file '%s': %s (%d)\n", filename, strerror(errno), errno); // @raysan5: commented
return TINYOBJ_ERROR_FILE_OPERATION;
}
@@ -1321,7 +1321,7 @@ int tinyobj_parse_obj(tinyobj_attrib_t *attrib, tinyobj_shape_t **shapes,
if (ret != TINYOBJ_SUCCESS) {
/* warning. */
- fprintf(stderr, "TINYOBJ: Failed to parse material file '%s': %d\n", filename, ret);
+ //fprintf(stderr, "TINYOBJ: Failed to parse material file '%s': %d\n", filename, ret); // @raysan5: commented
}
TINYOBJ_FREE(filename);