fix changing order if 0Bxx is present

This commit is contained in:
tildearrow 2022-01-13 20:54:34 -05:00
parent 805cf69c52
commit b26208f2c1

View file

@ -683,9 +683,6 @@ void DivEngine::nextRow() {
processRow(i,false);
}
if (++curRow>=song.patLen) {
nextOrder();
}
if (changeOrd!=-1) {
if (repeatPattern) {
curRow=0;
@ -701,6 +698,8 @@ void DivEngine::nextRow() {
}
changeOrd=-1;
}
} else if (++curRow>=song.patLen) {
nextOrder();
}
if (speedAB) {