[Mplayer-cvslog] CVS: main parser-mpcmd.c,1.4,1.5

Diego Biurrun CVS diego at mplayerhq.hu
Sun Dec 15 05:47:35 CET 2002


Update of /cvsroot/mplayer/main
In directory mail:/var/tmp.root/cvs-serv6110

Modified Files:
	parser-mpcmd.c 
Log Message:
-rnd --> -shuffle


Index: parser-mpcmd.c
===================================================================
RCS file: /cvsroot/mplayer/main/parser-mpcmd.c,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- parser-mpcmd.c	11 Dec 2002 20:56:37 -0000	1.4
+++ parser-mpcmd.c	15 Dec 2002 04:47:32 -0000	1.5
@@ -224,12 +224,12 @@
 	    pt->loop = l;
 	    tmp = 1;
 	  }
-	} else if(strcasecmp(opt,"rnd") == 0) {
+	} else if(strcasecmp(opt,"shuffle") == 0) {
 	  if(last_entry && last_entry->child)
 	    last_entry->flags |= PLAY_TREE_RND;
 	  else
 	    last_parent->flags |= PLAY_TREE_RND;
-	} else if(strcasecmp(opt,"nornd") == 0) {
+	} else if(strcasecmp(opt,"noshuffle") == 0) {
 	  if(last_entry && last_entry->child)
 	    last_entry->flags &= ~PLAY_TREE_RND;
 	  else




More information about the MPlayer-cvslog mailing list