* src/sfnt.c (GPV, GFV): Cast versors to int32_t.
vector \
= interpreter->state.projection_vector; \
\
- PUSH ((uint16_t) vector.x); \
- PUSH ((uint16_t) vector.y); \
+ PUSH ((int32_t) vector.x); \
+ PUSH ((int32_t) vector.y); \
}
#define GFV() \
vector \
= interpreter->state.freedom_vector; \
\
- PUSH ((uint16_t) vector.x); \
- PUSH ((uint16_t) vector.y); \
+ PUSH ((int32_t) vector.x); \
+ PUSH ((int32_t) vector.y); \
}
#define SFVTPV() \