From c636c014247e7c2f24bae724eca176ba8ae22ca3 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Thu, 18 Nov 2021 08:54:13 -0500 Subject: [PATCH] SMS: fix backdrop colors --- .../Consoles/Sega/SMS/VDP.Mode4.cs | 11 ++++------- src/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.cs | 7 +++++++ 2 files changed, 11 insertions(+), 7 deletions(-) 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)