Skip to content

Commit

Permalink
Update C64 VIC to fix MoonDust
Browse files Browse the repository at this point in the history
  • Loading branch information
alyosha-tas committed May 29, 2017
1 parent 2e519ed commit f99f984
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.cs
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,9 @@ public void ExecutePhase()
if (!_rasterInterruptTriggered)
{
_rasterInterruptTriggered = true;
_intRaster = true;
// interrupt needs to be enabled to be set to true
if (_enableIntRaster)
_intRaster = true;
}
}

Expand Down

0 comments on commit f99f984

Please sign in to comment.