diff options
| author | Ray <raysan5@gmail.com> | 2015-08-05 19:17:56 +0200 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2015-08-05 19:17:56 +0200 |
| commit | a42bfa77942565b7806294c40a4d970f9c3d27df (patch) | |
| tree | 80d06f0c6e4aec36450fc49d6504812ded0bd0e6 /src/text.c | |
| parent | 5436d93a3d4d9e694d24fc6495678c76a4972775 (diff) | |
| download | raylib-a42bfa77942565b7806294c40a4d970f9c3d27df.tar.gz raylib-a42bfa77942565b7806294c40a4d970f9c3d27df.zip | |
Added trace log for data unloading
Diffstat (limited to 'src/text.c')
| -rw-r--r-- | src/text.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -216,6 +216,8 @@ extern void UnloadDefaultFont(void) { UnloadTexture(defaultFont.texture); free(defaultFont.charSet); + + TraceLog(INFO, "Unloaded default font data"); } // Get the default font, useful to be used with extended parameters @@ -266,6 +268,8 @@ void UnloadSpriteFont(SpriteFont spriteFont) { UnloadTexture(spriteFont.texture); free(spriteFont.charSet); + + TraceLog(INFO, "Unloaded sprite font data"); } // Draw text (using default font) |
