From 281598812cd64f2a473d6d045706617213ec4684 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Mon, 28 Aug 2023 16:02:29 -0500 Subject: [PATCH] fix FFxx and "reset channels" loop modality issue #1427 --- src/engine/playback.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/playback.cpp b/src/engine/playback.cpp index 7483a972a..13bc57ee8 100644 --- a/src/engine/playback.cpp +++ b/src/engine/playback.cpp @@ -1173,7 +1173,7 @@ void DivEngine::nextRow() { } // new loop detection routine - if (!endOfSong && walked[((curOrder<<5)+(curRow>>3))&8191]&(1<<(curRow&7))) { + if (!endOfSong && walked[((curOrder<<5)+(curRow>>3))&8191]&(1<<(curRow&7)) && !shallStopSched) { logV("loop reached"); endOfSong=true; memset(walked,0,8192);