From 3f7292e13a71cfeb2258e4aefba8685cd9a882fc Mon Sep 17 00:00:00 2001 From: Hardeep Sidhu Date: Sun, 23 Apr 2006 17:15:45 +0000 Subject: Don't call playlist_start() when changing directories on swcodec devices. Fixes problem with previous dir not working. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9774 a1c6a512-1295-4272-9138-f99709370657 --- apps/playlist.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'apps') diff --git a/apps/playlist.c b/apps/playlist.c index 87bce59..958c003 100644 --- a/apps/playlist.c +++ b/apps/playlist.c @@ -2471,8 +2471,7 @@ int playlist_next(int steps) #if CONFIG_CODEC != SWCODEC playlist_start(0, 0); #endif - playlist->index = 0; - index = 0; + playlist->index = index = 0; } } } @@ -2486,8 +2485,10 @@ int playlist_next(int steps) ft_build_playlist(tree_get_context(), 0); if (global_settings.playlist_shuffle) playlist_shuffle(current_tick, -1); - playlist_start(current_playlist.amount-1,0); - index = current_playlist.amount-1; +#if CONFIG_CODEC != SWCODEC + playlist_start(current_playlist.amount-1, 0); +#endif + playlist->index = index = current_playlist.amount - 1; } } } -- cgit v1.1