mirror of https://github.com/stella-emu/stella.git
bug in vga blits: out of bounds when width=160
git-svn-id: svn://svn.code.sf.net/p/stella/code/trunk@1099 8b62c5a3-ac7e-4cc8-8f21-d9a121418aba
This commit is contained in:
parent
3c145ba8c7
commit
6596cbe94b
|
@ -569,7 +569,7 @@ void FrameBufferWinCE::drawMediaSource()
|
|||
// 4/1
|
||||
if ( *((uInt32 *) sc) != *((uInt32 *) sp) )
|
||||
{
|
||||
nl = d + scrlinestep;
|
||||
nl = d + pixelstep;
|
||||
pix1d = paldouble[*sc++];
|
||||
*((uInt32 *)d) = pix1d; d += pixelstepdouble;
|
||||
*((uInt32 *)nl) = pix1d; nl += pixelstepdouble;
|
||||
|
|
Loading…
Reference in New Issue