Update sfnt2fnt hack, now that Wine Courier is known as Courier.

oldstable
Huw Davies 2005-09-16 18:45:45 +00:00 committed by Alexandre Julliard
parent 978d12d0f6
commit 82f6d65b61
1 changed files with 1 additions and 1 deletions

View File

@ -160,7 +160,7 @@ static void fill_fontinfo(FT_Face face, int enc, FILE *fp, int dpi, unsigned cha
il = ascent - (face->glyph->metrics.height >> 6);
/* Hack: Courier has no internal leading, nor do any Chinese fonts */
if(!strcmp(face->family_name, "Wine Courier") || enc == 936 || enc == 950)
if(!strcmp(face->family_name, "Courier") || enc == 936 || enc == 950)
il = 0;
first_char = FT_Get_First_Char(face, &gi);