* src/autohint/ahhint.c (ah_hinter_load_glyph): Oops! David's patch from yesterday has been resolved already in a different way. Reverted.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
diff --git a/ChangeLog b/ChangeLog
index 94bef45..6de6a69 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2003-05-20 Werner Lemberg <wl@gnu.org>
+
+ * src/autohint/ahhint.c (ah_hinter_load_glyph): Oops! David's
+ patch from yesterday has been resolved already in a different
+ way. Reverted.
+
2003-05-19 David Chester <davidchester@qmx.net>
* src/autohint/ahhint.c (ah_hinter_load_glyph): Don't scale
diff --git a/src/autohint/ahhint.c b/src/autohint/ahhint.c
index d27a305..cd8a351 100644
--- a/src/autohint/ahhint.c
+++ b/src/autohint/ahhint.c
@@ -1758,12 +1758,12 @@
{
/* adjust y_scale
*/
- face->size->metrics.y_scale = FT_MulDiv( y_scale, fitted, scaled );
+ y_scale = FT_MulDiv( y_scale, fitted, scaled );
/* adust x_scale
*/
if ( fitted < scaled )
- face->size->metrics.x_scale -= x_scale/50; /* x_scale*0.98 */
+ x_scale -= x_scale/50; /* x_scale*0.98 with integers */
}
}
}
@@ -1774,9 +1774,7 @@
/* need to rescale the global metrics */
if ( face_globals->x_scale != x_scale ||
face_globals->y_scale != y_scale )
- ah_hinter_scale_globals( hinter,
- face->size->metrics.x_scale,
- face->size->metrics.y_scale );
+ ah_hinter_scale_globals( hinter, x_scale, y_scale );
ah_loader_rewind( hinter->loader );