consider disc number while sorting tracks in media library

master
Andrzej Rybczak 18 years ago
parent 8bd081e964
commit 11982bc1e4
  1. 5
      src/helpers.cpp

@ -243,7 +243,10 @@ bool Keypressed(int in, const int *key)
bool SortSongsByTrack(Song *a, Song *b)
{
return StrToInt(a->GetTrack()) < StrToInt(b->GetTrack());
if (a->GetDisc() == b->GetDisc())
return StrToInt(a->GetTrack()) < StrToInt(b->GetTrack());
else
return StrToInt(a->GetDisc()) < StrToInt(b->GetDisc());
}
void WindowTitle(const string &status)

Loading…
Cancel
Save