fix atarihawk video

This commit is contained in:
zeromus 2012-04-16 22:56:30 +00:00
parent d156dbe5fc
commit e41eabcfc3
1 changed files with 2 additions and 2 deletions

View File

@ -783,11 +783,11 @@ namespace BizHawk.Emulation.Consoles.Atari
{ {
if (scanlinesBuffer.Count > row) if (scanlinesBuffer.Count > row)
{ {
frameBuffer[row * 320 + col] = (int)(scanlinesBuffer[row][col / 2]); frameBuffer[row * 320 + col] = (int)(scanlinesBuffer[row][col / 2] | 0xFF000000);
} }
else else
{ {
frameBuffer[row * 320 + col] = 0x000000; frameBuffer[row * 320 + col] = unchecked((int)0xFF000000);
} }
} }
} }