forked from len0rd/rockbox
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
This commit is contained in:
parent
2f1da8d24a
commit
cbed7a2cd2
1 changed files with 1 additions and 1 deletions
|
|
@ -603,7 +603,7 @@ struct mp3entry* audio_current_track(void)
|
||||||
|
|
||||||
memset(&temp_id3, 0, sizeof(struct mp3entry));
|
memset(&temp_id3, 0, sizeof(struct mp3entry));
|
||||||
|
|
||||||
filename = playlist_peek(offset);
|
filename = playlist_peek(0);
|
||||||
if (!filename)
|
if (!filename)
|
||||||
filename = "No file!";
|
filename = "No file!";
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue