Commit bdaa54e6 authored by Aric Stewart's avatar Aric Stewart Committed by Alexandre Julliard

freetype: Fix a typo that prevented checking more than the first range in Range Format 2.

parent 64b35d85
......@@ -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));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment