* src/pfr/pfrobjs.c (pfr_face_init): Fix typo.

This commit is contained in:
Werner Lemberg 2002-06-18 20:30:13 +00:00
parent 27067c41c0
commit 73ffc7a0ea
2 changed files with 7 additions and 3 deletions

View File

@ -1,8 +1,12 @@
2002-06-17 Sven Neumann <sven@gimp.org>
* src/pfr/pfrobjs.c (pfr_face_init): Fix typo.
2002-06-16 Leonard Rosenthol <leonardr@lazerware.com>
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 <fok@debian.org>

View File

@ -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 */