From 4174751212d04953fc56e75ece474bdb40eb4e8e Mon Sep 17 00:00:00 2001 From: goyuken Date: Thu, 13 Feb 2014 19:10:39 +0000 Subject: [PATCH] SMS VDP Viewer: correct BG size for 192 line mode --- BizHawk.Client.EmuHawk/tools/SMS/VDPViewer.cs | 12 ++++++++++-- BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.cs | 2 +- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/BizHawk.Client.EmuHawk/tools/SMS/VDPViewer.cs b/BizHawk.Client.EmuHawk/tools/SMS/VDPViewer.cs index bfc83c5248..a6b75bddfa 100644 --- a/BizHawk.Client.EmuHawk/tools/SMS/VDPViewer.cs +++ b/BizHawk.Client.EmuHawk/tools/SMS/VDPViewer.cs @@ -85,7 +85,15 @@ namespace BizHawk.Client.EmuHawk unsafe void DrawBG(int* pal) { - var lockdata = bmpViewBG.bmp.LockBits(new Rectangle(0, 0, 256, 128), ImageLockMode.WriteOnly, PixelFormat.Format32bppArgb); + int bgheight = vdp.FrameHeight == 192 ? 224 : 256; + int maxtile = bgheight * 4; + if (bgheight != bmpViewBG.bmp.Height) + { + bmpViewBG.Height = bgheight; + bmpViewBG.ChangeBitmapSize(256, bgheight); + } + + var lockdata = bmpViewBG.bmp.LockBits(new Rectangle(0, 0, 256, bgheight), ImageLockMode.WriteOnly, PixelFormat.Format32bppArgb); int* dest = (int*)lockdata.Scan0; int pitch = lockdata.Stride / sizeof(int); @@ -95,7 +103,7 @@ namespace BizHawk.Client.EmuHawk { short* map = (short*)(vram + vdp.CalcNameTableBase()); - for (int tile = 0; tile < 1024; tile++) + for (int tile = 0; tile < maxtile; tile++) { short bgent = *map++; bool hflip = (bgent & 1 << 9) != 0; diff --git a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.cs b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.cs index 873e640e3d..8cc9b13b73 100644 --- a/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.cs +++ b/BizHawk.Emulation.Cores/Consoles/Sega/SMS/VDP.cs @@ -40,7 +40,7 @@ namespace BizHawk.Emulation.Cores.Sega.MasterSystem public int IPeriod = 228; public VdpMode VdpMode { get { return mode; } } - int FrameHeight = 192; + public int FrameHeight = 192; public int ScanLine; public int[] FrameBuffer = new int[256 * 192]; public int[] GameGearFrameBuffer = new int[160 * 144];