mirror of
https://github.com/tildearrow/furnace.git
synced 2024-12-28 18:41:16 +00:00
fix macros sometimes being out of sync when seekin
This commit is contained in:
parent
f3c3d82e4d
commit
820b23ecdb
1 changed files with 1 additions and 1 deletions
|
@ -1666,7 +1666,7 @@ void DivEngine::playSub(bool preserveDrift, int goalRow) {
|
|||
}
|
||||
}
|
||||
int oldOrder=curOrder;
|
||||
while (playing && curRow<goalRow) {
|
||||
while (playing && (curRow<goalRow || ticks>1)) {
|
||||
if (nextTick(preserveDrift)) {
|
||||
skipping=false;
|
||||
return;
|
||||
|
|
Loading…
Reference in a new issue