From d5c07447d208b33af92e1b82c2379f62584abf41 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Fri, 14 Jul 2017 18:55:21 -0400 Subject: [PATCH] BSnes: Ignore the "crop SGB frame" setting if SGB is not active. --- BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs index 6c1ff63d74..3b82b711bf 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES/LibsnesCore.cs @@ -491,7 +491,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES xskip = 2; } - if (_settings.CropSGBFrame) + if (_settings.CropSGBFrame && IsSGB) { _videoWidth = 160; _videoHeight = 144; @@ -503,7 +503,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES _videoBuffer = new int[size]; } - if (_settings.CropSGBFrame) + if (_settings.CropSGBFrame && IsSGB) { int di = 0; for (int y = 0; y < 144; y++)