mirror of
git://git.sv.nongnu.org/freetype/freetype2.git
synced 2026-01-19 04:52:09 +00:00
Update file ttinterp.c
This commit is contained in:
@@ -2567,7 +2567,7 @@
|
||||
Ins_ODD( TT_ExecContext exc,
|
||||
FT_Long* args )
|
||||
{
|
||||
args[0] = ( ( exc->func_round( exc, args[0], 0 ) & 127 ) == 64 );
|
||||
args[0] = ( ( exc->func_round( exc, args[0], 0 ) & 64 ) == 64 );
|
||||
}
|
||||
|
||||
|
||||
@@ -2581,7 +2581,7 @@
|
||||
Ins_EVEN( TT_ExecContext exc,
|
||||
FT_Long* args )
|
||||
{
|
||||
args[0] = ( ( exc->func_round( exc, args[0], 0 ) & 127 ) == 0 );
|
||||
args[0] = ( ( exc->func_round( exc, args[0], 0 ) & 64 ) == 0 );
|
||||
}
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user