diff --git a/ChangeLog b/ChangeLog index 9495a9b2e..5cd786b8c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,8 +1,12 @@ +2002-06-17 Sven Neumann + + * src/pfr/pfrobjs.c (pfr_face_init): Fix typo. + 2002-06-16 Leonard Rosenthol Updated Win32/VC++ projects to include the new PFR driver - * builds\win32\visualc\freetype.dsp + * builds\win32\visualc\freetype.dsp: Updated. 2002-06-16 Anthony Fok diff --git a/src/pfr/pfrobjs.c b/src/pfr/pfrobjs.c index f5af6298f..76a35d541 100644 --- a/src/pfr/pfrobjs.c +++ b/src/pfr/pfrobjs.c @@ -120,9 +120,9 @@ root->face_flags |= FT_FACE_FLAG_FIXED_WIDTH; if ( phy_font->flags & PFR_PHY_VERTICAL ) - root->face_flags |= FT_FACE_FLAG_HORIZONTAL; - else root->face_flags |= FT_FACE_FLAG_VERTICAL; + else + root->face_flags |= FT_FACE_FLAG_HORIZONTAL; /* XXX: kerning and embedded bitmap support isn't there yet */