summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarianne Arnold <pixelma@rockbox.org>2009-01-08 16:22:09 +0000
committerMarianne Arnold <pixelma@rockbox.org>2009-01-08 16:22:09 +0000
commitf5ab7c028e5932049b1778a53ed59757d21bc31d (patch)
tree177bf2d2e53b5086cb43476ec0bff58962372574
parent56d5bc728d6be964b2518b252341a78bb3dcfdef (diff)
downloadrockbox-f5ab7c028e5932049b1778a53ed59757d21bc31d.tar.gz
rockbox-f5ab7c028e5932049b1778a53ed59757d21bc31d.zip
Commit patch by JdGordon to fix FS#9531 (which applied to all targets) - correctly resume shuffled playlists.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19723 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/playlist.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/playlist.c b/apps/playlist.c
index 95e1b8262c..38f685161f 100644
--- a/apps/playlist.c
+++ b/apps/playlist.c
@@ -2343,6 +2343,7 @@ int playlist_resume(void)
2343 /* Terminate on EOF */ 2343 /* Terminate on EOF */
2344 if(nread <= 0) 2344 if(nread <= 0)
2345 { 2345 {
2346 playlist->first_index = 0;
2346 break; 2347 break;
2347 } 2348 }
2348 } 2349 }