From ee49f147fb0006e5af8fe3aaad074febd39d5893 Mon Sep 17 00:00:00 2001 From: alyosha-tas Date: Fri, 13 Apr 2018 16:21:53 -0400 Subject: [PATCH] PCE: Don't always make a new frame buffer when settings change Fixes #1175 --- BizHawk.Emulation.Cores/Consoles/PC Engine/VDC.cs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/PC Engine/VDC.cs b/BizHawk.Emulation.Cores/Consoles/PC Engine/VDC.cs index e8fda4374b..7574ce7f93 100644 --- a/BizHawk.Emulation.Cores/Consoles/PC Engine/VDC.cs +++ b/BizHawk.Emulation.Cores/Consoles/PC Engine/VDC.cs @@ -1,6 +1,7 @@ using BizHawk.Common; using BizHawk.Emulation.Common; using BizHawk.Emulation.Cores.Components.H6280; +using System; namespace BizHawk.Emulation.Cores.PCEngine { @@ -161,7 +162,6 @@ namespace BizHawk.Emulation.Cores.PCEngine FramePitch = MultiResHack == 0 ? FrameWidth : MultiResHack; //if (FrameBuffer.Length != FramePitch * FrameHeight) //FrameBuffer = new int[FramePitch * FrameHeight]; - FrameBuffer = new int[320 * 262]; break; case VDW: // Vertical Display Word? - update framebuffer size //FrameHeight = RequestedFrameHeight; @@ -172,7 +172,6 @@ namespace BizHawk.Emulation.Cores.PCEngine FramePitch = MultiResHack; //if (FrameBuffer.Length != FramePitch * FrameHeight) //FrameBuffer = new int[FramePitch * FrameHeight]; - FrameBuffer = new int[320 * 262]; break; case LENR: // Initiate DMA transfer if (!msbComplete) break;