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:
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user