This commit is contained in:
Alexei Podtelezhnikov 2013-01-23 23:09:59 -05:00
parent da11e5e764
commit dcc0d070e0
1 changed files with 2 additions and 2 deletions

View File

@ -982,13 +982,13 @@
l = FT_MIN( l_in, l_out );
if ( FT_MulFix( xstrength, q ) =< FT_MulFix( d, l ) )
if ( FT_MulFix( xstrength, q ) <= FT_MulFix( d, l ) )
shift.x = FT_MulDiv( shift.x, xstrength, d );
else
shift.x = FT_MulDiv( shift.x, l, q );
if ( FT_MulFix( ystrength, q ) =< FT_MulFix( d, l ) )
if ( FT_MulFix( ystrength, q ) <= FT_MulFix( d, l ) )
shift.y = FT_MulDiv( shift.y, ystrength, d );
else
shift.y = FT_MulDiv( shift.y, l, q );