Update C64 VIC to fix MoonDust

This commit is contained in:
alyosha-tas 2017-05-29 14:32:12 -04:00 committed by GitHub
parent 2e519eda05
commit f99f9847b4
1 changed files with 3 additions and 1 deletions

View File

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