From f99f9847b43d7ec51899ef65b91443e14e56b1a7 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Mon, 29 May 2017 14:32:12 -0400 Subject: [PATCH] Update C64 VIC to fix MoonDust --- BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.cs index 12e42a64e2..df6a205a08 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.cs @@ -262,7 +262,9 @@ namespace BizHawk.Emulation.Cores.Computers.Commodore64.MOS if (!_rasterInterruptTriggered) { _rasterInterruptTriggered = true; - _intRaster = true; + // interrupt needs to be enabled to be set to true + if (_enableIntRaster) + _intRaster = true; } }