mirror of https://github.com/freetype/freetype
* src/truetype/ttgxvar.c (tt_var_get_item_delta): Align with specs.
This commit is contained in:
parent
39f2fbf80c
commit
347276c1f6
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue