diff options
author | Darkvater <Darkvater@openttd.org> | 2006-12-07 00:54:18 +0000 |
---|---|---|
committer | Darkvater <Darkvater@openttd.org> | 2006-12-07 00:54:18 +0000 |
commit | 90f7419681d02148f9d0a4dbf747bf311a9bcfee (patch) | |
tree | b0c45170b0c89dcdeacea7a224f46b3445e2d8e4 | |
parent | 509a179676b9180aa79ad57ec0b6e7f42255e42b (diff) | |
download | openttd-90f7419681d02148f9d0a4dbf747bf311a9bcfee.tar.xz |
(svn r7411) -Cleanup: Add 'Freetype' to dbg message output, just like all others
-rw-r--r-- | fontcache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fontcache.c b/fontcache.c index ceeb7c33c..b4673b244 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); |