diff --git a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Registers.cs b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Registers.cs index 0e63f4c16f..be8b1293af 100644 --- a/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Registers.cs +++ b/BizHawk.Emulation.Cores/Computers/Commodore64/MOS/Vic.Registers.cs @@ -292,6 +292,27 @@ _extraColorMode = (val & 0x40) != 0; _rasterInterruptLine &= 0xFF; _rasterInterruptLine |= (val & 0x80) << 1; + + if (_rasterLine == FirstDmaLine) + _badlineEnable |= _displayEnable; + + if (_badlineEnable) + { + if ((_rasterLine & 0x7) == _yScroll) + { + _badline = true; + _idle = false; + } + else + { + _badline = false; + } + } + else + { + _badline = false; + } + UpdateBorder(); UpdateVideoMode(); break;