diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2002-06-27 10:10:30 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2002-06-27 10:10:30 +0000 |
| commit | 9fbdae59f85e4ce1837e0f0f86969cbd0358d62b (patch) | |
| tree | 04540a102f0d38c9098509438faa53022e20decd /apps | |
| parent | e606fae6a916f0ef5f38d85c800d13c353511f91 (diff) | |
| download | rockbox-9fbdae59f85e4ce1837e0f0f86969cbd0358d62b.zip rockbox-9fbdae59f85e4ce1837e0f0f86969cbd0358d62b.tar.gz rockbox-9fbdae59f85e4ce1837e0f0f86969cbd0358d62b.tar.bz2 rockbox-9fbdae59f85e4ce1837e0f0f86969cbd0358d62b.tar.xz | |
Now uses global_settings.playlist_shuffle
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1233 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/playlist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/playlist.c b/apps/playlist.c index c7d1505..4a2a6fd 100644 --- a/apps/playlist.c +++ b/apps/playlist.c @@ -29,9 +29,9 @@ #include "mpeg.h" #include "lcd.h" #include "kernel.h" +#include "settings.h" playlist_info_t playlist; -bool playlist_shuffle = false; char now_playing[256]; @@ -107,7 +107,7 @@ void play_list(char *dir, char *file) /* add track indices to playlist data structure */ add_indices_to_playlist(&playlist); - if(playlist_shuffle) { + if(global_settings.playlist_shuffle) { lcd_puts(0,0,"Shuffling..."); lcd_update(); randomise_playlist( &playlist, current_tick ); |