diff options
| author | Hardeep Sidhu <dyp@pobox.com> | 2006-04-30 05:29:04 +0000 |
|---|---|---|
| committer | Hardeep Sidhu <dyp@pobox.com> | 2006-04-30 05:29:04 +0000 |
| commit | b236dc63ffcc8ba0d29a4e925ab6cd00f8853ad6 (patch) | |
| tree | 275b0aea545e45cca87c3e363569f7d921245cee | |
| parent | fede7ff6f2e1c4ed6e7c50e81cf61d8bf3bb3f10 (diff) | |
| download | rockbox-b236dc63ffcc8ba0d29a4e925ab6cd00f8853ad6.zip rockbox-b236dc63ffcc8ba0d29a4e925ab6cd00f8853ad6.tar.gz rockbox-b236dc63ffcc8ba0d29a4e925ab6cd00f8853ad6.tar.bz2 rockbox-b236dc63ffcc8ba0d29a4e925ab6cd00f8853ad6.tar.xz | |
Fixed problem with incorrect first index after resume
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9835 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/playlist.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/playlist.c b/apps/playlist.c index e6affc7..8c20868 100644 --- a/apps/playlist.c +++ b/apps/playlist.c @@ -1928,6 +1928,8 @@ int playlist_resume(void) return -1; } + playlist->started = true; + while (1) { int result = 0; |