* src/cff/cffparse.c (cff_parser_run): Thinko.

This commit is contained in:
Alexei Podtelezhnikov 2023-03-05 00:31:58 -05:00
parent de6002203b
commit c4b5127b74
1 changed files with 2 additions and 2 deletions

View File

@ -1363,8 +1363,8 @@
}
else if ( -1131 <= num && num <= -108 )
{
*q++ = (FT_Byte)( ( ( 108 - num ) >> 8 ) + 251 );
*q++ = (FT_Byte)( ( 108 - num ) & 0xFF );
*q++ = (FT_Byte)( ( ( -num - 108 ) >> 8 ) + 251 );
*q++ = (FT_Byte)( ( -num - 108) & 0xFF );
}
else
{