Simplify unused macro.

This commit is contained in:
Alexei Podtelezhnikov 2020-06-19 22:46:30 -04:00
parent f594ffdc35
commit de088b1dfd
1 changed files with 1 additions and 2 deletions

View File

@ -448,8 +448,7 @@ FT_BEGIN_HEADER
#define F2DOT14_TO_FIXED( x ) ( (FT_Long)(x) * 4 ) /* << 2 */
#define FIXED_TO_INT( x ) ( FT_RoundFix( x ) >> 16 )
#define ROUND_F26DOT6( x ) ( x >= 0 ? ( ( (x) + 32 ) & -64 ) \
: ( -( ( 32 - (x) ) & -64 ) ) )
#define ROUND_F26DOT6( x ) ( ( (x) + 32 - ( x < 0 ) ) & -64 )
/*
* The following macros have two purposes.