Apple II - fix graphics
This commit is contained in:
parent
04fafd910d
commit
d76d40125a
|
@ -97,7 +97,8 @@ namespace BizHawk.Emulation.Cores.Computers.AppleII
|
|||
|
||||
public override void SetPixel(int x, int y, uint color)
|
||||
{
|
||||
fb[560 * y + x] = (int)color;
|
||||
int i = 560 * y + x;
|
||||
fb[i] = fb[i + 560] = (int)color;
|
||||
}
|
||||
public override void Update()
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue