Typos in macros.

* include/freetype/internal/ftcalc.h: s/_M_X86/_M_IX86/.
* src/truetype/ttinterp.c: s/_M_X86/_M_IX86/.
This commit is contained in:
Alexei Podtelezhnikov 2025-04-12 09:18:16 -04:00
parent f0acd2038a
commit 58b3598c2a
2 changed files with 4 additions and 4 deletions

View file

@ -104,7 +104,7 @@ FT_BEGIN_HEADER
return a;
}
#elif defined( __i386__ ) || defined( _M_X86 )
#elif defined( __i386__ ) || defined( _M_IX86 )
#define FT_MULFIX_ASSEMBLER FT_MulFix_i386
@ -155,7 +155,7 @@ FT_BEGIN_HEADER
return result;
}
#endif /* __i386__ || _M_X86 */
#endif /* __i386__ || _M_IX86 */
#define FT_MulFix( a, b ) FT_MULFIX_ASSEMBLER( (FT_Int32)(a), (FT_Int32)(b) )

View file

@ -1225,7 +1225,7 @@
return a;
}
#elif defined( __i386__ ) || defined( _M_X86 )
#elif defined( __i386__ ) || defined( _M_IX86 )
#define TT_MulFix14 TT_MulFix14_i386
@ -1276,7 +1276,7 @@
return result;
}
#endif /* __i386__ || _M_X86 */
#endif /* __i386__ || _M_IX86 */
#endif /* !FT_CONFIG_OPTION_NO_ASSEMBLER */