aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/playlist.c14
1 files changed, 13 insertions, 1 deletions
diff --git a/src/playlist.c b/src/playlist.c
index 4d9c0da96..ba5b5150c 100644
--- a/src/playlist.c
+++ b/src/playlist.c
@@ -668,7 +668,6 @@ int playPlaylistOrderNumber(FILE * fp, int orderNum) {
playlist_noGoToNext = 0;
playlist.queued = -1;
playlist_queueError = 0;
- playlist.current = orderNum;
DEBUG("playlist: play %i:\"%s\"\n",orderNum,
(playlist.songs[playlist.order[orderNum]])->utf8url);
@@ -677,6 +676,9 @@ int playPlaylistOrderNumber(FILE * fp, int orderNum) {
stopPlaylist(fp);
return -1;
}
+ else playlist.current++;
+
+ playlist.current = orderNum;
return 0;
}
@@ -799,6 +801,16 @@ int nextSongInPlaylist(FILE * fp) {
return 0;
}
+void incrPlaylistCurrent() {
+ if(playlist.current >= playlist.length || (!playlist.repeat &&
+ playlist.current == playlist.length-1))
+ {
+ playlist.current = -1;
+ }
+ else if(playlist.current == playlist.length-1) playlist.current = 0;
+ else if(playlist.current >= 0) playlist.current++;
+}
+
void playPlaylistIfPlayerStopped() {
if(getPlayerState()==PLAYER_STATE_STOP) {
int error = getPlayerError();