possible fix to #1356

This commit is contained in:
tildearrow 2023-08-14 16:28:43 -05:00
parent a79c82033c
commit 741d350fe2
5 changed files with 9 additions and 12 deletions

View file

@ -4417,8 +4417,12 @@ void DivEngine::updateSysFlags(int system, bool restart) {
saveLock.unlock();
}
if (restart && isPlaying()) {
playSub(false);
if (restart) {
if (isPlaying()) {
playSub(false);
} else if (freelance) {
reset();
}
}
BUSY_END;
}