shithub: freetype+ttf2subf

Download patch

ref: 146ff279b4cdb6af0d6eedaf42ab3dbda848fad5
parent: 2f70965f9f094385654f881d73cb73a82b3e6ada
author: David Turner <[email protected]>
date: Wed Jan 22 17:47:04 EST 2003

* src/autohint/ahhint.c: small fix to the stem width optimisation

git/fs: mount .git/fs: mount/attach disallowed
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2003-01-22  David Chester  <[email protected]>
+
+    * src/autohint/ahhint.c: small fix to the stem width optimisation
+
 2003-01-22  David Turner  <[email protected]>
 
     * include/freetype/ftbdf.h, include/freetype/internal/bdftypes.h,
--- a/src/autohint/ahhint.c
+++ b/src/autohint/ahhint.c
@@ -124,7 +124,7 @@
 
       else if ( ( base_flags & AH_EDGE_ROUND ) )
       {
-        if ( dist < 96 )
+        if ( dist < 80 )
           dist = 64;
       }
       else if ( dist < 56 )