summaryrefslogtreecommitdiff
path: root/mg_playlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'mg_playlist.c')
-rw-r--r--mg_playlist.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/mg_playlist.c b/mg_playlist.c
index 38d4d0f..83bdbd8 100644
--- a/mg_playlist.c
+++ b/mg_playlist.c
@@ -2,8 +2,8 @@
* \file mg_playlist.c
* \brief defines functions to be executed on playlists for the vdr muggle plugindatabase
*
- * \version $Revision: 1.5 $
- * \date $Date: 2004/07/26 22:20:54 $
+ * \version $Revision: 1.6 $
+ * \date $Date: 2004/07/27 20:50:54 $
* \author Ralf Klueber, Lars von Wedel, Andreas Kellner
* \author Responsible author: $Author: lvw $
*
@@ -158,7 +158,7 @@ void mgPlaylist::gotoPosition(unsigned int position)
// proceeds to the next item
void mgPlaylist::skipFwd()
{
- if( m_current_idx + 1 <= m_list.size() ) // unless loop mode
+ if( m_current_idx + 1 < m_list.size() ) // unless loop mode
{
m_current_idx ++;
}