From 594812d4c6f3914fc0b18271ae5a595aa918c7eb Mon Sep 17 00:00:00 2001 From: Darkvater Date: Thu, 7 Dec 2006 00:54:18 +0000 Subject: [PATCH] (svn r7411) -Cleanup: Add 'Freetype' to dbg message output, just like all others --- fontcache.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fontcache.c b/fontcache.c index ceeb7c33c3..b4673b2449 100644 --- a/fontcache.c +++ b/fontcache.c @@ -241,7 +241,7 @@ static void LoadFreeTypeFont(const char *font_name, FT_Face *face, const char *t if (error != FT_Err_Ok) error = GetFontByFaceName(font_name, face); if (error == FT_Err_Ok) { - DEBUG(freetype, 2) ("Requested font '%s', found '%s %s'", font_name, (*face)->family_name, (*face)->style_name); + DEBUG(freetype, 2) ("[FreeType] Requested '%s', using '%s %s'", font_name, (*face)->family_name, (*face)->style_name); /* Attempt to select the unicode character map */ error = FT_Select_Charmap(*face, ft_encoding_unicode);