Commit 82f6d65b authored by Huw Davies's avatar Huw Davies Committed by Alexandre Julliard

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

parent 978d12d0
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment