mirror of
https://github.com/harfbuzz/harfbuzz.git
synced 2025-04-05 13:35:06 +00:00
Merge pull request #5152 from harfbuzz/fix-trak-finding
[trak] Fix track finding logic
This commit is contained in:
commit
bd2bf3536c
1 changed files with 2 additions and 2 deletions
|
@ -142,9 +142,9 @@ struct TrackData
|
|||
unsigned j = count - 1;
|
||||
|
||||
// Find the two entries that track is between.
|
||||
while (i + 1 < count && trackTable[i + 1].get_track_value () < track)
|
||||
while (i + 1 < count && trackTable[i + 1].get_track_value () <= track)
|
||||
i++;
|
||||
while (j > 0 && trackTable[j - 1].get_track_value () > track)
|
||||
while (j > 0 && trackTable[j - 1].get_track_value () >= track)
|
||||
j--;
|
||||
|
||||
// Exact match.
|
||||
|
|
Loading…
Add table
Reference in a new issue