diff options
| author | Boris Gjenero <dreamlayers@rockbox.org> | 2009-04-07 16:16:55 +0000 |
|---|---|---|
| committer | Boris Gjenero <dreamlayers@rockbox.org> | 2009-04-07 16:16:55 +0000 |
| commit | e84520c67e1260b164b4c06aa3b88929b5bc2352 (patch) | |
| tree | dedb410c667195f08af194ea90e1796272c8ea52 | |
| parent | f5c5983c73167aab8dde6360237322e2ba529cb5 (diff) | |
| download | rockbox-e84520c67e1260b164b4c06aa3b88929b5bc2352.zip rockbox-e84520c67e1260b164b4c06aa3b88929b5bc2352.tar.gz rockbox-e84520c67e1260b164b4c06aa3b88929b5bc2352.tar.bz2 rockbox-e84520c67e1260b164b4c06aa3b88929b5bc2352.tar.xz | |
Revert FS#9531 / r19723 - It did not fix the problem, and it caused the index parameter of shuffle and unshuffle .playlist_control commands to be ignored. When those parameters were non-zero, this caused some tracks from the end of the original playlist to instead appear at the beginning of the resumed playlist.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20641 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/playlist.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/playlist.c b/apps/playlist.c index d426900..e5babd4 100644 --- a/apps/playlist.c +++ b/apps/playlist.c @@ -2344,7 +2344,6 @@ int playlist_resume(void) /* Terminate on EOF */ if(nread <= 0) { - playlist->first_index = 0; break; } } |