SNES: fix possible sample corruption

when toggling echo
This commit is contained in:
tildearrow 2023-07-29 17:12:46 -05:00
parent 423f2f5069
commit 1325664d25
3 changed files with 15 additions and 3 deletions

View file

@ -392,6 +392,15 @@ void DivPlatformOPLL::commitState(int ch, DivInstrument* ins) {
}
}
void DivPlatformOPLL::switchMode(bool mode) {
if (mode==properDrums) return;
if (mode) {
} else {
}
}
int DivPlatformOPLL::dispatch(DivCommand c) {
switch (c.cmd) {
case DIV_CMD_NOTE_ON: {