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

This commit is contained in:
Aric Stewart 2008-03-19 13:29:21 +09:00 committed by Alexandre Julliard
parent 64b35d8566
commit bdaa54e64f
1 changed files with 1 additions and 1 deletions

View File

@ -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));