SNES: forceIns work

This commit is contained in:
tildearrow 2022-09-25 02:47:30 -05:00
parent eb6708ab23
commit b4c260dc2a
1 changed files with 4 additions and 1 deletions

View File

@ -390,7 +390,10 @@ void DivPlatformSNES::forceIns() {
chan[i].insChanged=true;
chan[i].freqChanged=true;
chan[i].sample=-1;
updateWave(i);
if (chan[i].active && chan[i].useWave) {
updateWave(i);
}
writeOutVol(i);
}
}