remove an unused varaible in VDC.Render.cs, fixes a warning

This commit is contained in:
adelikat 2020-03-19 10:18:35 -05:00
parent 3dd0c18839
commit 9b68246b19
1 changed files with 1 additions and 2 deletions

View File

@ -428,8 +428,7 @@ namespace BizHawk.Emulation.Cores.PCEngine
private int FramePitch = 320;
private int FrameWidth = 320;
private int FrameHeight = 262;
private int[] FrameBuffer = new int[320 * 262];
private readonly int[] FrameBuffer = new int[320 * 262];
// IVideoProvider implementation
public int[] GetVideoBuffer() => FrameBuffer;