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