mirror of
https://github.com/tildearrow/furnace.git
synced 2024-11-23 21:15:11 +00:00
don't eat the last row in audio file out
This commit is contained in:
parent
6a02754996
commit
db2bfb8aa3
1 changed files with 1 additions and 2 deletions
|
@ -579,6 +579,7 @@ bool DivEngine::nextTick() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (--ticks<=0) {
|
if (--ticks<=0) {
|
||||||
|
ret=endOfSong;
|
||||||
nextRow();
|
nextRow();
|
||||||
}
|
}
|
||||||
// process stuff
|
// process stuff
|
||||||
|
@ -674,8 +675,6 @@ bool DivEngine::nextTick() {
|
||||||
lastCmds=totalCmds;
|
lastCmds=totalCmds;
|
||||||
}
|
}
|
||||||
|
|
||||||
ret=endOfSong;
|
|
||||||
endOfSong=false;
|
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue