forked from minhngoc25a/freetype2
* 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.
This commit is contained in:
parent
02197280b4
commit
b2cb6ce6c4
|
@ -1,3 +1,9 @@
|
|||
2008-11-29 James Cloos <cloos@jhcloos.com>
|
||||
|
||||
* 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.
|
||||
|
||||
2008-11-27 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* src/cff/cffparse.c (cff_parse_real): Handle more than nine
|
||||
|
|
|
@ -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];
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue