From cbed7a2cd21bb2715b39ebcd3015147a9d7ff3c2 Mon Sep 17 00:00:00 2001 From: Steve Bavin Date: Fri, 6 Jul 2007 20:49:40 +0000 Subject: [PATCH] Fix problem where follow playlist picks the next track, not the current one (FS#7244). Hopefully also fixes the wrong filename being displayed on the WPS (FS#7248). git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13805 a1c6a512-1295-4272-9138-f99709370657 --- apps/playback.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/playback.c b/apps/playback.c index 64c6dbb662..98f30e918c 100644 --- a/apps/playback.c +++ b/apps/playback.c @@ -603,7 +603,7 @@ struct mp3entry* audio_current_track(void) memset(&temp_id3, 0, sizeof(struct mp3entry)); - filename = playlist_peek(offset); + filename = playlist_peek(0); if (!filename) filename = "No file!";