freetype: Fix a typo that prevented checking more than the first range in Range Format 2.
This commit is contained in:
parent
64b35d8566
commit
bdaa54e64f
|
@ -3830,8 +3830,8 @@ static INT GSUB_is_glyph_covered(LPCVOID table , UINT glyph)
|
|||
return (GET_BE_WORD(cf2->RangeRecord[i].StartCoverageIndex) +
|
||||
glyph - GET_BE_WORD(cf2->RangeRecord[i].Start));
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
return -1;
|
||||
}
|
||||
else
|
||||
ERR("Unknown CoverageFormat %i\n",GET_BE_WORD(cf1->CoverageFormat));
|
||||
|
|
Loading…
Reference in New Issue