diff --git a/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.Mode4.cs b/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.Mode4.cs index b21c507125..2206401dc2 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.Mode4.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.Mode4.cs @@ -309,28 +309,25 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem OverscanFrameBuffer = new int[OverscanFrameHeight * OverscanFrameWidth]; } - // TODO: overscan color can change, this should be calculated per scanline, not done in bulk at the end - int overscan_color = Palette[BackdropColor]; - // Top overscan for (int y=0; y (Registers[1] & 16) > 0; public bool Mode2Bit => (Registers[0] & 2) > 0; @@ -382,6 +383,11 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem internal void RenderCurrentScanline(bool render) { + if (ScanLine < FrameHeight) + { + Backdrop_SL[ScanLine] = Palette[(byte)(16 + (Registers[7] & 15))]; + } + // only mode 4 supports frameskip. deal with it if (TmsMode == 4) { @@ -423,6 +429,7 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem ser.Sync(nameof(CRAM), ref CRAM, false); ser.Sync(nameof(VRAM), ref VRAM, false); ser.Sync(nameof(HCounter), ref HCounter); + ser.Sync(nameof(Backdrop_SL), ref Backdrop_SL, false); ser.EndSection(); if (ser.IsReader)