]> git.sesse.net Git - vlc/commitdiff
* src/misc/configuration.c: minor fix in a comment.
authorSam Hocevar <sam@videolan.org>
Fri, 27 Jun 2003 13:38:54 +0000 (13:38 +0000)
committerSam Hocevar <sam@videolan.org>
Fri, 27 Jun 2003 13:38:54 +0000 (13:38 +0000)
  * src/playlist/playlist.c: the -Z mode randomises the first item as well.

src/misc/configuration.c
src/playlist/playlist.c

index 9a56eed7d8685815af3bbbe8c7c9dc57af6f646e..a24da6a091493a65e7b288fff3f1edcc94eccf10 100644 (file)
@@ -2,7 +2,7 @@
  * configuration.c management of the modules configuration
  *****************************************************************************
  * Copyright (C) 2001 VideoLAN
- * $Id: configuration.c,v 1.57 2003/06/14 16:29:22 gbazin Exp $
+ * $Id: configuration.c,v 1.58 2003/06/27 13:38:54 sam Exp $
  *
  * Authors: Gildas Bazin <gbazin@netcourrier.com>
  *
@@ -1334,7 +1334,7 @@ char *config_GetHomeDir( void )
     HINSTANCE shfolder_dll;
     SHGETFOLDERPATH SHGetFolderPath ;
 
-    /* load the shell32 dll to retreive SHGetFolderPath */
+    /* load the shfolder dll to retrieve SHGetFolderPath */
     if( ( shfolder_dll = LoadLibrary("shfolder.dll") ) != NULL )
     {
         SHGetFolderPath = (void *)GetProcAddress( shfolder_dll,
index 1c0f9f90b45175cf97ba8fc0146dc192e748c010..fe8ae742717d0415f814bf7a8ed131b4b7d386be 100644 (file)
@@ -2,7 +2,7 @@
  * playlist.c : Playlist management functions
  *****************************************************************************
  * Copyright (C) 1999-2001 VideoLAN
- * $Id: playlist.c,v 1.39 2003/06/27 10:31:02 zorglub Exp $
+ * $Id: playlist.c,v 1.40 2003/06/27 13:38:54 sam Exp $
  *
  * Authors: Samuel Hocevar <sam@zoy.org>
  *
@@ -521,6 +521,7 @@ static void RunThread ( playlist_t *p_playlist )
         }
         else if( p_playlist->i_status != PLAYLIST_STOPPED )
         {
+            SkipItem( p_playlist, 0 );
             PlayItem( p_playlist );
         }