(svn r23381) -Fix (r23380): win9x compilation

This commit is contained in:
glx 2011-11-30 20:17:27 +00:00
parent 44918dded0
commit 721c74d279

View File

@ -351,7 +351,7 @@ static int CALLBACK EnumFontCallback(const ENUMLOGFONTEX *logfont, const NEWTEXT
EFCParam *info = (EFCParam *)lParam;
/* Skip duplicates */
if (!info->fonts.Add(logfont->elfFullName)) return 1;
if (!info->fonts.Add((const TCHAR*)logfont->elfFullName)) return 1;
/* Only use TrueType fonts */
if (!(type & TRUETYPE_FONTTYPE)) return 1;
/* Don't use SYMBOL fonts */