From 9bcd693910a3aed25a0f8b13bff6a6bb3a124745 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Sat, 27 May 2017 13:33:44 -0400 Subject: [PATCH] snes9x: video output is now fully functional --- BizHawk.Emulation.Cores/Consoles/Nintendo/SNES9X/Snes9x.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES9X/Snes9x.cs b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES9X/Snes9x.cs index 5feddb4fd5..c9b7f7652c 100644 --- a/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES9X/Snes9x.cs +++ b/BizHawk.Emulation.Cores/Consoles/Nintendo/SNES9X/Snes9x.cs @@ -98,7 +98,7 @@ namespace BizHawk.Emulation.Cores.Nintendo.SNES9X BufferWidth = frame.width; BufferHeight = frame.height; - int vinc = frame.pitch - frame.width; + int vinc = frame.pitch / sizeof(ushort) - frame.width; ushort* src = (ushort*)frame.ptr; fixed (int* _dst = _vbuff)