summaryrefslogtreecommitdiff
path: root/playlist.c
diff options
context:
space:
mode:
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;
}