From 876bd4081f79e2d55ce1644a20a71c8d6bef4009 Mon Sep 17 00:00:00 2001 From: Alexei Podtelezhnikov Date: Mon, 28 Jul 2025 21:33:38 -0400 Subject: [PATCH] Update file ttinterp.c --- src/truetype/ttinterp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/truetype/ttinterp.c b/src/truetype/ttinterp.c index 94386001c..59fb2023e 100644 --- a/src/truetype/ttinterp.c +++ b/src/truetype/ttinterp.c @@ -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 ); }