diff options
author | Romain Bignon <romain@peerfuse.org> | 2010-05-31 23:32:11 +0200 |
---|---|---|
committer | Romain Bignon <romain@peerfuse.org> | 2010-05-31 23:36:16 +0200 |
commit | 867b93a5b2d9c99f35981e3f4622cb2fc06eff99 (patch) | |
tree | 701829cdb56111cad1aa1894e17efdbeac89bab8 /src/playlist_control.c | |
parent | 53647c8ba1d7ce54a5caa0c7d414926bf4deb249 (diff) | |
download | mpd-867b93a5b2d9c99f35981e3f4622cb2fc06eff99.tar.gz mpd-867b93a5b2d9c99f35981e3f4622cb2fc06eff99.tar.xz mpd-867b93a5b2d9c99f35981e3f4622cb2fc06eff99.zip |
single mode: at the end of the song, pause on the next song instead of stop
Diffstat (limited to 'src/playlist_control.c')
-rw-r--r-- | src/playlist_control.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/playlist_control.c b/src/playlist_control.c index cd449b425..fa843c89e 100644 --- a/src/playlist_control.c +++ b/src/playlist_control.c @@ -147,8 +147,6 @@ playlist_next(struct playlist *playlist) next_order = queue_next_order(&playlist->queue, playlist->current); if (next_order < 0) { - /* cancel single */ - playlist->queue.single = false; /* no song after this one: stop playback */ playlist_stop(playlist); |