Backed out scalable bitmap change (gives ugly results).

This commit is contained in:
Alexandre Julliard 2000-01-08 22:27:31 +00:00
parent cb3c7bfa70
commit 24ea884488
1 changed files with 4 additions and 2 deletions

View File

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