From 0a1751cc772734d6fa73f9ca348e5d2d4bb9392c Mon Sep 17 00:00:00 2001 From: Ivan Izaguirre Date: Fri, 22 Nov 2019 23:25:37 +0100 Subject: [PATCH] Fix width of Double high res --- screenDoubleHiRes.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/screenDoubleHiRes.go b/screenDoubleHiRes.go index 9396944..6aedf74 100644 --- a/screenDoubleHiRes.go +++ b/screenDoubleHiRes.go @@ -28,7 +28,7 @@ func snapshotDoubleHiResModeMono(a *Apple2, isSecondPage bool, mixedMode bool, l // For the NTSC filter to work we have to insert an initial black pixel and skip the last one img.Set(x, y, color.Black) x++ - for iByte := 0; iByte < hiResLineBytes-1; iByte++ { + for iByte := 0; iByte < hiResLineBytes; iByte++ { for iPart := 0; iPart < 2; iPart++ { b := lineParts[iPart][iByte] for j := uint(0); j < 7; j++ {