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:
knakos 2006-04-30 11:05:23 +00:00
parent 3c145ba8c7
commit 6596cbe94b
1 changed files with 1 additions and 1 deletions

View File

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