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