summaryrefslogtreecommitdiff
path: root/playlist.c
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2009-08-10 19:46:13 +0200
committerGravatar waker <wakeroid@gmail.com>2009-08-10 19:46:13 +0200
commit64afdee10e69f6deffb15b2741d6886e99006b9b (patch)
tree3ab4a9996e5140ac95ed97a7e9199c52c196b7b2 /playlist.c
parentb7a27737d1ecf9b28ba5294dec29baa9cc6351eb (diff)
disabled shuffle, reenabled hvsc sldb
Diffstat (limited to 'playlist.c')
-rw-r--r--playlist.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/playlist.c b/playlist.c
index 44239920..86e90be9 100644
--- a/playlist.c
+++ b/playlist.c
@@ -515,6 +515,7 @@ pl_insert_item (playItem_t *after, playItem_t *it) {
pl_count++;
int idx = (float)rand ()/RAND_MAX * pl_count;
+#if 0
// shuffle
playItem_t *prev = NULL;
if (!playlist_head[PL_SHUFFLE]) {
@@ -543,6 +544,7 @@ pl_insert_item (playItem_t *after, playItem_t *it) {
prev = sh;
}
}
+#endif
return it;
}