From d76d40125a1d299f0c342005c76104cb97f44b6c Mon Sep 17 00:00:00 2001 From: adelikat Date: Wed, 11 Mar 2015 01:28:24 +0000 Subject: [PATCH] Apple II - fix graphics --- BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs b/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs index 90ffa84562..9d70bf2735 100644 --- a/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs +++ b/BizHawk.Emulation.Cores/Computers/AppleII/AppleII.cs @@ -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() {