C64: Fix a typo disabling voice 3 when high pass filter is set

This commit is contained in:
SaxxonPike 2019-07-04 17:32:35 -05:00
parent f45e934fec
commit 49b613962e
1 changed files with 1 additions and 1 deletions

View File

@ -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;