mirror of
https://github.com/tildearrow/furnace.git
synced 2025-01-01 04:21:44 +00:00
fix changing order if 0Bxx is present
This commit is contained in:
parent
805cf69c52
commit
b26208f2c1
1 changed files with 2 additions and 3 deletions
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue