# HG changeset patch # User albeu # Date 1057661105 0 # Node ID 59982e3c403b4422d511ccc7f3bdc1a1f1b73233 # Parent 122564a2df38941d685dd51a4acfb3ef712eb119 Fix -shuffle with remote playlist diff -r 122564a2df38 -r 59982e3c403b playtree.c --- a/playtree.c Mon Jul 07 23:02:25 2003 +0000 +++ b/playtree.c Tue Jul 08 10:45:05 2003 +0000 @@ -397,6 +397,8 @@ for(i = 0; src->params[i].name != NULL ; i++) play_tree_set_param(dest,src->params[i].name,src->params[i].value); + if(src->flags & PLAY_TREE_RND) // pass the random flag too + dest->flags |= PLAY_TREE_RND; }