Commit dde93e93 authored by Jean-Paul Saman's avatar Jean-Paul Saman

playlist_Add() prototype changed

parent 83f9c5e5
...@@ -38,12 +38,13 @@ void CmdAddItem::execute() ...@@ -38,12 +38,13 @@ void CmdAddItem::execute()
{ {
// Enqueue and play the item // Enqueue and play the item
playlist_Add( pPlaylist, m_name.c_str(), NULL, playlist_Add( pPlaylist, m_name.c_str(), NULL,
PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END, VLC_TRUE ); PLAYLIST_APPEND | PLAYLIST_GO, PLAYLIST_END, VLC_TRUE,
VLC_FALSE );
} }
else else
{ {
// Enqueue the item only // Enqueue the item only
playlist_Add( pPlaylist, m_name.c_str(), NULL, playlist_Add( pPlaylist, m_name.c_str(), NULL,
PLAYLIST_APPEND, PLAYLIST_END, VLC_TRUE ); PLAYLIST_APPEND, PLAYLIST_END, VLC_TRUE, VLC_FALSE );
} }
} }
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