force insChanged on note input

partially solves issue #8
This commit is contained in:
tildearrow 2022-01-17 18:01:40 -05:00
parent 84e9d52d7f
commit ce027d99f6
15 changed files with 15 additions and 15 deletions

View file

@ -74,7 +74,7 @@ int DivPlatformYM2610Ext::dispatch(DivCommand c) {
break;
}
case DIV_CMD_INSTRUMENT:
if (opChan[ch].ins!=c.value) {
if (opChan[ch].ins!=c.value || c.value2==1) {
opChan[ch].insChanged=true;
}
opChan[ch].ins=c.value;