* src/autofit/aflatin.c (af_latin_hints_init): fixed a bug that prevented internal hint mode bitflags from being computed correctly
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 686c9e9..a47f4ac 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2005-09-23 David Turner <david@freetype.org>
+
+ * src/autofit/aflatin.c (af_latin_hints_init): fixed a bug that
+ prevented internal hint mode bitflags from being computed correctly
+
2005-09-22 Werner Lemberg <wl@gnu.org>
* docs/CHANGES: Mention SING Glyphlet support.
@@ -419,7 +424,7 @@
2005-07-04 Werner Lemberg <wl@gnu.org>
- * include/freetype/internal/ftmemory.h (FT_REALLOC_ARRAY): Fix typo.
+ * include/freetype/internal/ftmemory.h (FT_REALLOC_ARRAY): Fix typo.
Reported by Brett Hutley.
2005-06-30 David Turner <david@freetype.org>
diff --git a/src/autofit/aflatin.c b/src/autofit/aflatin.c
index a1f8f87..ab47f88 100644
--- a/src/autofit/aflatin.c
+++ b/src/autofit/aflatin.c
@@ -848,7 +848,7 @@
AF_Direction major_dir = axis->major_dir;
AF_Segment seg1, seg2;
-
+
/* now compare each segment to the others */
for ( seg1 = segments; seg1 < segment_limit; seg1++ )
{
@@ -1311,6 +1311,8 @@
mode = metrics->root.scaler.render_mode;
+ hints->other_flags = 0;
+
/*
* We snap the width of vertical stems for the monochrome and
* horizontal LCD rendering targets only.