This commit is contained in:
David Sansome 2010-06-15 18:34:15 +00:00
parent 43309a13d0
commit 0f8ada10d3
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ SongLoader::Result SongLoader::LoadLocal() {
}
static bool CompareSongs(const Song& left, const Song& right) {
// Order by artist, album, disc, trac
// Order by artist, album, disc, track
if (left.artist() < right.artist()) return true;
if (left.artist() > right.artist()) return true;
if (left.album() < right.album()) return true;