* src/truetype/ttgxvar.c (tt_var_get_item_delta): Align with specs.

This commit is contained in:
Alexei Podtelezhnikov 2024-05-21 13:12:45 +00:00
parent 39f2fbf80c
commit 347276c1f6
1 changed files with 2 additions and 2 deletions

View File

@ -1093,8 +1093,8 @@
continue;
/* ignore this region if coords are out of range */
else if ( ncv <= axis->startCoord ||
ncv >= axis->endCoord )
else if ( ncv < axis->startCoord ||
ncv > axis->endCoord )
{
scalar = 0;
break;