diff options
| author | Marianne Arnold <pixelma@rockbox.org> | 2009-01-08 16:22:09 +0000 |
|---|---|---|
| committer | Marianne Arnold <pixelma@rockbox.org> | 2009-01-08 16:22:09 +0000 |
| commit | f5ab7c028e5932049b1778a53ed59757d21bc31d (patch) | |
| tree | 177bf2d2e53b5086cb43476ec0bff58962372574 | |
| parent | 56d5bc728d6be964b2518b252341a78bb3dcfdef (diff) | |
| download | rockbox-f5ab7c028e5932049b1778a53ed59757d21bc31d.zip rockbox-f5ab7c028e5932049b1778a53ed59757d21bc31d.tar.gz rockbox-f5ab7c028e5932049b1778a53ed59757d21bc31d.tar.bz2 rockbox-f5ab7c028e5932049b1778a53ed59757d21bc31d.tar.xz | |
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.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/playlist.c b/apps/playlist.c index 95e1b82..38f6851 100644 --- a/apps/playlist.c +++ b/apps/playlist.c @@ -2343,6 +2343,7 @@ int playlist_resume(void) /* Terminate on EOF */ if(nread <= 0) { + playlist->first_index = 0; break; } } |