remove seamless looping as an option (it's now the only kind of looping we support)

This commit is contained in:
Paul Davis 2019-11-01 14:04:16 -06:00
parent fb2f1aa8e1
commit a072228de5
6 changed files with 33 additions and 88 deletions

View file

@ -238,10 +238,7 @@ BasicUI::transport_play (bool from_last_start)
/* XXX it is not possible to just leave seamless loop and keep
playing at present (nov 4th 2009)
*/
if (!Config->get_seamless_loop()) {
/* stop loop playback and stop rolling */
session->request_play_loop (false, true);
} else if (rolling) {
if (rolling) {
/* stop loop playback but keep rolling */
session->request_play_loop (false, false);
}