diff --git a/ChangeLog b/ChangeLog index 436ecffd5..bbbb17008 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,11 @@ +2013-05-22 Infinality + + [truetype] Formatting and an additional subpixel tweak. + + * src/truetype/ttinterp.c (Ins_SHPIX): Formatting fix. + * src/truetype/ttsubpix.c (SKIP_NONPIXEL_Y_MOVES_Rules): + Revert previous modification for Verdana clones. + 2013-05-22 Infinality [truetype] Adjust subpixel zp2 moves and tweak rules. diff --git a/src/truetype/ttinterp.c b/src/truetype/ttinterp.c index 0cd869d64..7d32e8374 100644 --- a/src/truetype/ttinterp.c +++ b/src/truetype/ttinterp.c @@ -6124,9 +6124,9 @@ B2 = CUR.zp2.cur[point].y; /* reverse any disallowed moves */ - if ( ( B1 & 63 ) == 0 && - ( B2 & 63 ) != 0 && - B1 != B2 ) + if ( ( B1 & 63 ) == 0 && + ( B2 & 63 ) != 0 && + B1 != B2 ) MOVE_Zp2_Point( point, 0, -dy, TRUE ); } } diff --git a/src/truetype/ttsubpix.c b/src/truetype/ttsubpix.c index 28e0e587c..28470ad65 100644 --- a/src/truetype/ttsubpix.c +++ b/src/truetype/ttsubpix.c @@ -322,7 +322,7 @@ /* Cyrillic small letter I */ { "Legacy Sans Fonts", 0, "", 0 }, /* Fix artifacts with some Regular & Bold */ - { "Verdana Clones", 17, "", 0 }, + { "Verdana Clones", 0, "", 0 }, };