diff --git a/ChangeLog b/ChangeLog index 40850171d..2be36e15a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2014-07-26 Werner Lemberg + + [cff] Fix typo. + + * src/cff/cf2hints.c (cf2_glyphpath_computeOffset): Use correct + offsets in third quadrant. + + Reported by maks . + 2014-07-17 Werner Lemberg Fix Savannah bug #42788. diff --git a/src/cff/cf2hints.c b/src/cff/cf2hints.c index 5853d7758..81049f470 100644 --- a/src/cff/cf2hints.c +++ b/src/cff/cf2hints.c @@ -1560,7 +1560,7 @@ { /* -y */ *x = -glyphpath->xOffset; - *y = glyphpath->xOffset; + *y = glyphpath->yOffset; } else {