Commit e3c317c2 authored by Sam Hocevar's avatar Sam Hocevar

* src/misc/configuration.c: minor fix in a comment.

  * src/playlist/playlist.c: the -Z mode randomises the first item as well.
parent 8f9ee6fd
......@@ -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,
......
......@@ -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 );
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment