summaryrefslogtreecommitdiff
path: root/src/type1
diff options
context:
space:
mode:
authorWerner Lemberg <wl@gnu.org>2008-11-29 09:32:12 +0000
committerWerner Lemberg <wl@gnu.org>2008-11-29 09:32:12 +0000
commitb2cb6ce6c4d7d7bd25818d22e60378574692ce8d (patch)
treedec84c03ca9574405a18fc45b2de1e3dcbbf4fd2 /src/type1
parent02197280b464cb84d6fb63520868bcc62ce0edfb (diff)
* src/type1/t1load.c (mm_axis_unmap): `blend_points' is FT_Fixed*,
whereas `design_points' is FT_Long*. Therefore, return blend rather than design points.
Diffstat (limited to 'src/type1')
-rw-r--r--src/type1/t1load.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/type1/t1load.c b/src/type1/t1load.c
index 411a2aa1..7a98302a 100644
--- a/src/type1/t1load.c
+++ b/src/type1/t1load.c
@@ -230,7 +230,7 @@
if ( ncv <= axismap->blend_points[0] )
- return axismap->design_points[0];
+ return axismap->blend_points[0];
for ( j = 1; j < axismap->num_points; ++j )
{
@@ -249,7 +249,7 @@
}
}
- return axismap->design_points[axismap->num_points - 1];
+ return axismap->blend_points[axismap->num_points - 1];
}