From 5916b9af174acfa6581ac987b1538a1db3639b80 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Thu, 10 Oct 2019 20:12:44 -0400 Subject: [PATCH] GBHawk: minor bug fixes --- .../Consoles/Nintendo/GBHawk/GBC_PPU_GB.cs | 2 ++ .../Consoles/Nintendo/GBHawk/GBHawk.IEmulator.cs | 10 ++++++++++ .../Consoles/Nintendo/GBHawk/GB_PPU.cs | 2 ++ .../Consoles/Nintendo/GBHawk/HW_Registers.cs | 2 +- .../Consoles/Nintendo/GBHawk/PPU.cs | 2 ++ 5 files changed, 17 insertions(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBC_PPU_GB.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBC_PPU_GB.cs index 684f3c0790..fef5761b27 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBC_PPU_GB.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBC_PPU_GB.cs @@ -117,6 +117,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk VRAM_access_write = true; OAM_access_read = true; OAM_access_write = true; + + clear_screen = true; } if (!LCDC.Bit(7) && value.Bit(7)) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.IEmulator.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.IEmulator.cs index d726744ea0..96859f3d06 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.IEmulator.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GBHawk.IEmulator.cs @@ -132,6 +132,16 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk in_vblank_old = in_vblank; } + + // turn off the screen so the image doesnt persist + // but dont turn off blank_frame yet, it still needs to be true until the next VBL + // this doesn't run for GBC, some games, ex MIB the series 2, rely on the screens persistence while off to make video look smooth. + // But some GB gams, ex Battletoads, turn off the screen for a long time from the middle of the frame, so need to be cleared. + if (ppu.clear_screen) + { + for (int j = 0; j < frame_buffer.Length; j++) { frame_buffer[j] = (int)color_palette[0]; } + ppu.clear_screen = false; + } } public void do_single_step() diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GB_PPU.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GB_PPU.cs index 4fffeb388b..c7c1850d9d 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GB_PPU.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/GB_PPU.cs @@ -39,6 +39,8 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk VRAM_access_write = true; OAM_access_read = true; OAM_access_write = true; + + clear_screen = true; } if (!LCDC.Bit(7) && value.Bit(7)) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/HW_Registers.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/HW_Registers.cs index 41d6687b4a..326a61cf3c 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/HW_Registers.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/HW_Registers.cs @@ -114,7 +114,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk case 0xFF4F: // VBK if (GBC_compat) { - ret = VRAM_Bank; + ret = (byte)(0xFE | VRAM_Bank); } else { diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/PPU.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/PPU.cs index a28ea89fc9..6afdad2f57 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/PPU.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/GBHawk/PPU.cs @@ -11,6 +11,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk public uint[] OBJ_palette = new uint[32]; public bool HDMA_active; + public bool clear_screen; // register variables public byte LCDC; @@ -172,6 +173,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.GBHawk ser.Sync(nameof(BG_palette), ref BG_palette, false); ser.Sync(nameof(OBJ_palette), ref OBJ_palette, false); ser.Sync(nameof(HDMA_active), ref HDMA_active); + ser.Sync(nameof(clear_screen), ref clear_screen); ser.Sync(nameof(LCDC), ref LCDC); ser.Sync(nameof(STAT), ref STAT);