PlaylistControl: use SeekSongOrder(current) to keep current song

The "current" attribute is a "song order", not a "song position".
This is usually the same - except in random mode.  Fixes Mantis ticket
0004073.
This commit is contained in:
Max Kellermann
2014-08-31 14:44:20 +02:00
parent 704be54c3a
commit a26ead035a
2 changed files with 3 additions and 1 deletions

View File

@@ -265,5 +265,5 @@ playlist::SeekCurrent(PlayerControl &pc, float seek_time, bool relative)
if (seek_time < 0)
seek_time = 0;
return SeekSongPosition(pc, current, seek_time);
return SeekSongOrder(pc, current, seek_time);
}