From 7834a4e2fc967e88bebb168ad63c8a28eb5e44eb Mon Sep 17 00:00:00 2001 From: raysan5 Date: Wed, 29 Jul 2015 21:43:30 +0200 Subject: Replaced old mail by twitter user --- src/text.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/text.c') diff --git a/src/text.c b/src/text.c index feed211e..b7c78ce1 100644 --- a/src/text.c +++ b/src/text.c @@ -4,7 +4,7 @@ * * Basic functions to load SpriteFonts and draw Text * -* Copyright (c) 2014 Ramon Santamaria (Ray San - raysan@raysanweb.com) +* Copyright (c) 2014 Ramon Santamaria (@raysan5) * * This software is provided "as-is", without any express or implied warranty. In no event * will the authors be held liable for any damages arising from the use of this software. -- cgit v1.2.3 From a42bfa77942565b7806294c40a4d970f9c3d27df Mon Sep 17 00:00:00 2001 From: Ray Date: Wed, 5 Aug 2015 19:17:56 +0200 Subject: Added trace log for data unloading --- src/text.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/text.c') diff --git a/src/text.c b/src/text.c index b7c78ce1..65d52f26 100644 --- a/src/text.c +++ b/src/text.c @@ -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) -- cgit v1.2.3