Apple II - fix graphics

This commit is contained in:
adelikat 2015-03-11 01:28:24 +00:00
parent 04fafd910d
commit d76d40125a
1 changed files with 2 additions and 1 deletions

View File

@ -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()
{