From 49b613962e5d9bc4366b86138e158d10c4c259a9 Mon Sep 17 00:00:00 2001 From: SaxxonPike Date: Thu, 4 Jul 2019 17:32:35 -0500 Subject: [PATCH] C64: Fix a typo disabling voice 3 when high pass filter is set --- .../Computers/Commodore64/MOS/Sid.Registers.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Sid.Registers.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Sid.Registers.cs index 71f65cf74e..3140be4fef 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Sid.Registers.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Sid.Registers.cs @@ -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;