MACOSX: Add comment about track ID search loop.

This commit is contained in:
Johannes Schickel 2016-03-15 14:25:42 +01:00
parent 7725e00e9a
commit afe8ea139c

View File

@ -279,6 +279,7 @@ bool MacOSXAudioCDManager::findTrackNames(const Common::String &drivePath) {
if (fileName.hasSuffix(".aiff") || fileName.hasSuffix(".cdda")) {
uint j = 0;
// Search for the track ID in the file name.
for (; j < fileName.size() && !Common::isDigit(fileName[j]); j++)
;