Fixed: #908 Incorrect method CMusicPlayer::previous() (patch provided by lubos)

This commit is contained in:
kervala 2010-05-17 11:22:16 +02:00
parent de682be280
commit 91f233c5fb

View file

@ -108,8 +108,11 @@ void CMusicPlayer::previous ()
if (!_Songs.empty()) if (!_Songs.empty())
{ {
// Point the previous song // Point the previous song
_CurrentSong--; if (_CurrentSong == 0)
_CurrentSong%=_Songs.size(); _CurrentSong = _Songs.size()-1;
else
_CurrentSong--;
play (); play ();
} }
} }