summaryrefslogtreecommitdiff
path: root/src/client/font.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/font.c')
-rw-r--r--src/client/font.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/client/font.c b/src/client/font.c
index 8d522b2..3473a1d 100644
--- a/src/client/font.c
+++ b/src/client/font.c
@@ -35,9 +35,9 @@ void initFont(char *file, int size)
TTF_SetFontStyle(g_font, TTF_STYLE_NORMAL);
fontSize = size;
-#ifdef DEBUG
- printf(_("Loading font: \"%s\"\n"), file);
-#endif
+
+ DEBUG_MSG(_("Loading font: \"%s\"\n"), file);
+
isFontInit = TRUE;
}
@@ -129,8 +129,8 @@ void quitFont()
{
TTF_CloseFont(g_font);
TTF_Quit();
-#ifdef DEBUG
- printf(_("Unloading font\n"));
-#endif
+
+ DEBUG_MSG(_("Unloading font\n"));
+
isFontInit = FALSE;
}