* src/cff/cffparse.c (cff_parser_run): Thinko.
This commit is contained in:
parent
de6002203b
commit
c4b5127b74
1 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue