* src/truetype/ttinterp.c (Ins_IP), src/autofit/aflatin.c
(af_latin_metrics_scale_dim): Fix compiler warnings.
This commit is contained in:
parent
4127103f8d
commit
94be20ea82
@ -1,3 +1,8 @@
|
||||
2007-05-09 Graham Asher <graham.asher@btinternet.com>
|
||||
|
||||
* src/truetype/ttinterp.c (Ins_IP), src/autofit/aflatin.c
|
||||
(af_latin_metrics_scale_dim): Fix compiler warnings.
|
||||
|
||||
2007-05-06 Werner Lemberg <wl@gnu.org>
|
||||
|
||||
* builds/win32/visualce/freetype.sln: Removed, as requested by
|
||||
|
@ -527,7 +527,8 @@
|
||||
|
||||
/* an extra-light axis corresponds to a standard width that is */
|
||||
/* smaller than 0.75 pixels */
|
||||
axis->extra_light = FT_MulFix( axis->standard_width, scale ) < 32 + 8;
|
||||
axis->extra_light =
|
||||
(FT_Bool)( FT_MulFix( axis->standard_width, scale ) < 32 + 8 );
|
||||
|
||||
if ( dim == AF_DIMENSION_VERT )
|
||||
{
|
||||
|
@ -6213,7 +6213,7 @@
|
||||
? TT_MULDIV( org_dist, cur_range, old_range )
|
||||
: cur_dist;
|
||||
|
||||
CUR_Func_move( &CUR.zp2, point, new_dist - cur_dist );
|
||||
CUR_Func_move( &CUR.zp2, (FT_UShort)point, new_dist - cur_dist );
|
||||
}
|
||||
CUR.GS.loop = 1;
|
||||
CUR.new_top = CUR.args;
|
||||
|
Loading…
Reference in New Issue
Block a user