fix atarihawk video
This commit is contained in:
parent
d156dbe5fc
commit
e41eabcfc3
|
@ -783,11 +783,11 @@ namespace BizHawk.Emulation.Consoles.Atari
|
|||
{
|
||||
if (scanlinesBuffer.Count > row)
|
||||
{
|
||||
frameBuffer[row * 320 + col] = (int)(scanlinesBuffer[row][col / 2]);
|
||||
frameBuffer[row * 320 + col] = (int)(scanlinesBuffer[row][col / 2] | 0xFF000000);
|
||||
}
|
||||
else
|
||||
{
|
||||
frameBuffer[row * 320 + col] = 0x000000;
|
||||
frameBuffer[row * 320 + col] = unchecked((int)0xFF000000);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue