summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Turner <david@freetype.org>2003-08-17 23:00:59 +0000
committerDavid Turner <david@freetype.org>2003-08-17 23:00:59 +0000
commit10c4bd014cf8aa33a883b98b69bbabd01e9233f9 (patch)
treedff123db8d43f2c7495f23fa9ca0ca6061ff311b
parent1b1f7b928d5922ee1b130b1c3414e73ac6e01fa9 (diff)
downloadfreetype2-10c4bd014cf8aa33a883b98b69bbabd01e9233f9.tar.gz
* src/autohint/ahhint.c (ah_hinter_load_glyph): fixed bug
-rw-r--r--ChangeLog2
-rw-r--r--src/autohint/ahhint.c9
2 files changed, 5 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index de2aa839e..ced95e3e1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2003-08-18 David Turner <david@freetype.org>
+ * src/autohint/ahhint.c (ah_hinter_load_glyph): fixed bug
+
* Jamfile: adding the "refdoc" target to the Jamfile in order to
build the API Reference in "docs/reference" automatically
diff --git a/src/autohint/ahhint.c b/src/autohint/ahhint.c
index ea0ad952d..c4c8cfc50 100644
--- a/src/autohint/ahhint.c
+++ b/src/autohint/ahhint.c
@@ -1850,12 +1850,9 @@
hinter->do_stem_adjust = FT_BOOL( hint_mode != FT_RENDER_MODE_LIGHT );
-#if 1
- load_flags = FT_LOAD_NO_SCALE
- | FT_LOAD_IGNORE_TRANSFORM ;
-#else
- load_flags |= FT_LOAD_NO_SCALE | FT_LOAD_NO_RECURSE;
-#endif
+
+ load_flags |= FT_LOAD_NO_SCALE
+ | FT_LOAD_IGNORE_TRANSFORM ;
error = ah_hinter_load( hinter, glyph_index, load_flags, 0 );