C64: Fix a typo disabling voice 3 when high pass filter is set
This commit is contained in:
parent
f45e934fec
commit
49b613962e
|
@ -222,7 +222,7 @@
|
|||
_filterSelectLoPass = (val & 0x10) != 0;
|
||||
_filterSelectBandPass = (val & 0x20) != 0;
|
||||
_filterSelectHiPass = (val & 0x40) != 0;
|
||||
_disableVoice3 = (val & 0x40) != 0;
|
||||
_disableVoice3 = (val & 0x80) != 0;
|
||||
break;
|
||||
case 0x19:
|
||||
_potX = val;
|
||||
|
|
Loading…
Reference in New Issue