diff options
| author | Steve Bavin <pondlife@pondlife.me> | 2007-07-06 20:49:40 +0000 |
|---|---|---|
| committer | Steve Bavin <pondlife@pondlife.me> | 2007-07-06 20:49:40 +0000 |
| commit | cbed7a2cd21bb2715b39ebcd3015147a9d7ff3c2 (patch) | |
| tree | 780ec86db51e5434adfa4fad251af04b9deb40e5 | |
| parent | 2f1da8d24af7f4250d3ab5130a64a8810aa98cd3 (diff) | |
| download | rockbox-cbed7a2cd21bb2715b39ebcd3015147a9d7ff3c2.zip rockbox-cbed7a2cd21bb2715b39ebcd3015147a9d7ff3c2.tar.gz rockbox-cbed7a2cd21bb2715b39ebcd3015147a9d7ff3c2.tar.bz2 rockbox-cbed7a2cd21bb2715b39ebcd3015147a9d7ff3c2.tar.xz | |
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
| -rw-r--r-- | apps/playback.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/playback.c b/apps/playback.c index 64c6dbb..98f30e9 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!"; |