fix macros sometimes being out of sync when seekin

This commit is contained in:
tildearrow 2022-08-31 03:05:06 -05:00
parent f3c3d82e4d
commit 820b23ecdb
1 changed files with 1 additions and 1 deletions

View File

@ -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;