mirror of
https://github.com/tildearrow/furnace.git
synced 2025-01-05 23:21:22 +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);
|
processRow(i,false);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (++curRow>=song.patLen) {
|
|
||||||
nextOrder();
|
|
||||||
}
|
|
||||||
if (changeOrd!=-1) {
|
if (changeOrd!=-1) {
|
||||||
if (repeatPattern) {
|
if (repeatPattern) {
|
||||||
curRow=0;
|
curRow=0;
|
||||||
|
@ -701,6 +698,8 @@ void DivEngine::nextRow() {
|
||||||
}
|
}
|
||||||
changeOrd=-1;
|
changeOrd=-1;
|
||||||
}
|
}
|
||||||
|
} else if (++curRow>=song.patLen) {
|
||||||
|
nextOrder();
|
||||||
}
|
}
|
||||||
|
|
||||||
if (speedAB) {
|
if (speedAB) {
|
||||||
|
|
Loading…
Reference in a new issue