NDS: a couple fixes

- don't reset phase on duty or pitch change
- don't set volume in freqChanged
This commit is contained in:
tildearrow 2024-03-17 16:39:27 -05:00
parent 42ccba822c
commit 39c109fbc5

View file

@ -239,11 +239,9 @@ void DivPlatformNDS::tick(bool sysTick) {
if (chan[i].freq<0) chan[i].freq=0;
if (chan[i].freq>65535) chan[i].freq=65535;
ctrl=(chan[i].active?0xe8:0)|(chan[i].duty&7);
if (chan[i].keyOff || chan[i].keyOn) {
rWrite8(0x03+i*16,ctrl&~0x80); // force keyoff first
}
if (!chan[i].std.vol.had) {
chan[i].outVol=chan[i].vol;
writeOutVol(i);
}
chan[i].keyOn=false;
if (chan[i].keyOff) {