[trak] Fix track finding logic

This commit is contained in:
Behdad Esfahbod 2025-03-16 17:10:19 -06:00
parent 0a991cc543
commit a9a3fd33a2

View file

@ -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.