* src/truetype/ttgxvar.c (tt_delta_shift): Use unsigned references.

This commit is contained in:
Alexei Podtelezhnikov 2026-04-28 18:56:18 -04:00
parent 0d45c7f191
commit 6d9fc45fc4

View file

@ -4025,13 +4025,13 @@
/* modeled after `af_iup_shift' */
static void
tt_delta_shift( int p1,
int p2,
int ref,
tt_delta_shift( FT_UInt p1,
FT_UInt p2,
FT_UInt ref,
FT_Vector* in_points,
FT_Vector* out_points )
{
int p;
FT_UInt p;
FT_Vector delta;