Commit 4696dde23d4dd71fc68912004e0db454e122204e

Werner Lemberg 2011-06-20T19:09:02

* src/autofit/aflatin.c (af_latin_metrics_scale_dim): Fix change from 2011-05-04.

diff --git a/ChangeLog b/ChangeLog
index 917e08b..6026a59 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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.
diff --git a/src/autofit/aflatin.c b/src/autofit/aflatin.c
index c24043f..54fcf7f 100644
--- a/src/autofit/aflatin.c
+++ b/src/autofit/aflatin.c
@@ -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;
         }