Commit 24ea8844 authored by Alexandre Julliard's avatar Alexandre Julliard

Backed out scalable bitmap change (gives ugly results).

parent cb3c7bfa
......@@ -554,11 +554,13 @@ static int LFD_InitFontInfo( fontInfo* fi, const LFD* lfd, LPCSTR fullname )
{
case 0: /* Bitmap */
break;
case 2: /* Scalable bitmap */
case 4: /* Scalable */
fi->fi_flags |= FI_SCALABLE;
break;
case 2:
/* #$%^!!! X11R6 mutant garbage (scalable bitmap) */
TRACE("Skipping scalable bitmap '%s'\n", fullname);
return FALSE;
default:
WARN("Font '%s' has weird scalability\n", fullname);
return FALSE;
......
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