snes9x: video output is now fully functional

This commit is contained in:
nattthebear 2017-05-27 13:33:44 -04:00
parent 34791d8589
commit 9bcd693910
1 changed files with 1 additions and 1 deletions

View File

@ -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)