TIA: fix mute being ignored at times

This commit is contained in:
tildearrow 2022-01-20 23:14:18 -05:00
parent d8e8fd4031
commit e06911258e
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ void DivPlatformTIA::forceIns() {
chan[i].insChanged=true; chan[i].insChanged=true;
if (chan[i].active) { if (chan[i].active) {
chan[i].freqChanged=true; chan[i].freqChanged=true;
rWrite(0x19+i,chan[i].outVol&15); if (!isMuted[i]) rWrite(0x19+i,chan[i].outVol&15);
} }
} }
} }