Update file ttinterp.c

This commit is contained in:
Alexei Podtelezhnikov
2025-07-28 21:33:38 -04:00
parent ac662dcdcf
commit 876bd4081f

View File

@@ -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 );
}