gdi32: Fix a typo in faces_equal() preventing loading all sizes of a bitmap font.

This commit is contained in:
Dmitry Timoshkov 2012-04-09 18:24:53 +09:00 committed by Alexandre Julliard
parent f2d40ca87d
commit e7a1362880
1 changed files with 1 additions and 1 deletions

View File

@ -1193,7 +1193,7 @@ static inline BOOL faces_equal( const Face *f1, const Face *f2 )
{
if (strcmpiW( f1->StyleName, f2->StyleName )) return FALSE;
if (f1->scalable) return TRUE;
if (f2->size.y_ppem != f2->size.y_ppem) return FALSE;
if (f1->size.y_ppem != f2->size.y_ppem) return FALSE;
return !memcmp( &f1->fs, &f2->fs, sizeof(f1->fs) );
}