* src/autofit/aflatin.c (af_latin_metrics_scale_dim): Fix change

from 2011-05-04.
This commit is contained in:
Werner Lemberg 2011-06-20 19:09:02 +02:00
parent ea79b84621
commit 4696dde23d
2 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2011-06-20 Werner Lemberg <wl@gnu.org>
* src/autofit/aflatin.c (af_latin_metrics_scale_dim): Fix change
from 2011-05-04.
2011-06-18 Werner Lemberg <wl@gnu.org>
Update license documentation.

View File

@ -665,6 +665,9 @@
if ( delta1 < 0 )
delta2 = -delta2;
blue->ref.fit = FT_PIX_ROUND( blue->ref.cur );
blue->shoot.fit = blue->ref.fit + delta2;
#else
/* simplified version due to abs(dist) <= 48 */
@ -682,10 +685,10 @@
if ( dist < 0 )
delta2 = -delta2;
#endif
blue->ref.fit = FT_PIX_ROUND( blue->ref.cur );
blue->shoot.fit = blue->ref.fit + delta2;
blue->shoot.fit = blue->ref.fit - delta2;
#endif
blue->flags |= AF_LATIN_BLUE_ACTIVE;
}