From ec00bb2a8722e8a89090528be11780dc10b3534f Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Tue, 13 Mar 2018 16:14:38 -0500 Subject: [PATCH] It's the columns which matter, not rows --- src/apple2.hires.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/apple2.hires.c b/src/apple2.hires.c index 464fab6..5ab875d 100644 --- a/src/apple2.hires.c +++ b/src/apple2.hires.c @@ -5,9 +5,9 @@ * low-resolution graphics. Where one byte can hold the color data for * two onscreen cells in lores graphics, in hires, each _bit_ * corresponds to a pixel. The colors you can show depend on the pattern - * of high and low bits within a given data byte. Certain rows have - * black, purple, or blue available; alternating rows can be black, - * green, or orange. + * of high and low bits within a given data byte. Certain columns can be + * used to display black, purple, or blue; other columns can be used to + * show black, green, or orange. * * Some of this has to do with the space constraints available to the * Apple II: the hires graphics buffer is held between $2000 and $3FFF,