N64 - don't be 0 x 0 video size on startup

This commit is contained in:
adelikat 2014-05-12 23:54:27 +00:00
parent d5c2271c55
commit d9f86aa8a1
1 changed files with 10 additions and 1 deletions

View File

@ -19,7 +19,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64
int width = 0;
int height = 0;
api.GetScreenDimensions(ref width, ref height);
SetBufferSize(width, height);
SetBufferSize(
width > videosettings.Width ? width : videosettings.Width,
height > videosettings.Height ? height : videosettings.Height
);
core.FrameFinished += DoVideoFrame;
}
@ -57,6 +61,11 @@ namespace BizHawk.Emulation.Cores.Nintendo.N64
/// <param name="height">New height in pixels</param>
private void SetBufferSize(int width, int height)
{
if (width == 0)
{
int zzz = 0;
}
BufferHeight = height;
BufferWidth = width;
frameBuffer = new int[width * height];