still tick subticks in freelance mode

This commit is contained in:
tildearrow 2022-10-24 03:25:19 -05:00
parent 4acb6ccc09
commit 8b80009d92
1 changed files with 5 additions and 0 deletions

View File

@ -1280,6 +1280,11 @@ bool DivEngine::nextTick(bool noAccum, bool inhibitLowLat) {
}
}
}
} else {
// still tick the subtick counter
if (--subticks<=0) {
subticks=tickMult;
}
}
firstTick=false;