diff options
| author | Rob Loach <[email protected]> | 2023-01-22 05:10:38 -0500 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-01-22 11:10:38 +0100 |
| commit | d8af76f67c54a6fa7b20c0fadff7c15ef5478945 (patch) | |
| tree | 6f24dfe955fb92279d0a005c324e6f0ebd2d4815 /src/rtext.c | |
| parent | 78ae3b38a6e7d1386d233da620e7b31aa1a0a94e (diff) | |
| download | raylib-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.
Diffstat (limited to 'src/rtext.c')
| -rw-r--r-- | src/rtext.c | 2 |
1 files changed, 1 insertions, 1 deletions
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; } |
