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.
This commit is contained in:
Rob Loach
2023-01-22 05:10:38 -05:00
committed by GitHub
parent 78ae3b38a6
commit d8af76f67c
3 changed files with 6 additions and 6 deletions

View File

@@ -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;
}