summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorRob Loach <[email protected]>2023-01-22 05:10:38 -0500
committerGitHub <[email protected]>2023-01-22 11:10:38 +0100
commitd8af76f67c54a6fa7b20c0fadff7c15ef5478945 (patch)
tree6f24dfe955fb92279d0a005c324e6f0ebd2d4815
parent78ae3b38a6e7d1386d233da620e7b31aa1a0a94e (diff)
downloadraylib-d8af76f67c54a6fa7b20c0fadff7c15ef5478945.tar.gz
raylib-d8af76f67c54a6fa7b20c0fadff7c15ef5478945.zip
Fix to use TRACELOG() instead of TraceLog() for internal modules (#2881)
There were a few raylib modules that continued to use TraceLog() instead of the TRACELOG() macro. This change ensures that all the internal raylib modules use the TRACELOG() pattern consistently.
-rw-r--r--src/rcore.c6
-rw-r--r--src/rmodels.c4
-rw-r--r--src/rtext.c2
3 files changed, 6 insertions, 6 deletions
diff --git a/src/rcore.c b/src/rcore.c
index 23a6597a..1f97edb2 100644
--- a/src/rcore.c
+++ b/src/rcore.c
@@ -3310,7 +3310,7 @@ unsigned char *CompressData(const unsigned char *data, int dataSize, int *compDa
compData = (unsigned char *)RL_CALLOC(bounds, 1);
*compDataSize = sdeflate(&sdefl, compData, data, dataSize, COMPRESSION_QUALITY_DEFLATE); // Compression level 8, same as stbwi
- TraceLog(LOG_INFO, "SYSTEM: Compress data: Original size: %i -> Comp. size: %i", dataSize, *compDataSize);
+ TRACELOG(LOG_INFO, "SYSTEM: Compress data: Original size: %i -> Comp. size: %i", dataSize, *compDataSize);
#endif
return compData;
@@ -3335,7 +3335,7 @@ unsigned char *DecompressData(const unsigned char *compData, int compDataSize, i
*dataSize = length;
- TraceLog(LOG_INFO, "SYSTEM: Decompress data: Comp. size: %i -> Original size: %i", compDataSize, *dataSize);
+ TRACELOG(LOG_INFO, "SYSTEM: Decompress data: Comp. size: %i -> Original size: %i", compDataSize, *dataSize);
#endif
return data;
@@ -6854,7 +6854,7 @@ static void LoadAutomationEvents(const char *fileName)
if ((fileId[0] == 'r') && (fileId[1] == 'E') && (fileId[2] == 'P') && (fileId[1] == ' '))
{
fread(&eventCount, sizeof(int), 1, repFile);
- TraceLog(LOG_WARNING, "Events loaded: %i\n", eventCount);
+ TRACELOG(LOG_WARNING, "Events loaded: %i\n", eventCount);
fread(events, sizeof(AutomationEvent), eventCount, repFile);
}
diff --git a/src/rmodels.c b/src/rmodels.c
index 89538d7a..80ea9164 100644
--- a/src/rmodels.c
+++ b/src/rmodels.c
@@ -3937,12 +3937,12 @@ static Model LoadOBJ(const char *fileName)
{
model.materialCount = materialCount;
model.materials = (Material *)RL_CALLOC(model.materialCount, sizeof(Material));
- TraceLog(LOG_INFO, "MODEL: model has %i material meshes", materialCount);
+ TRACELOG(LOG_INFO, "MODEL: model has %i material meshes", materialCount);
}
else
{
model.meshCount = 1;
- TraceLog(LOG_INFO, "MODEL: No materials, putting all meshes in a default material");
+ TRACELOG(LOG_INFO, "MODEL: No materials, putting all meshes in a default material");
}
model.meshes = (Mesh *)RL_CALLOC(model.meshCount, sizeof(Mesh));
diff --git a/src/rtext.c b/src/rtext.c
index f9838670..718fda04 100644
--- a/src/rtext.c
+++ b/src/rtext.c
@@ -669,7 +669,7 @@ Image GenImageFontAtlas(const GlyphInfo *chars, Rectangle **charRecs, int glyphC
if (chars == NULL)
{
- TraceLog(LOG_WARNING, "FONT: Provided chars info not valid, returning empty image atlas");
+ TRACELOG(LOG_WARNING, "FONT: Provided chars info not valid, returning empty image atlas");
return atlas;
}