From 38f3a1e53cea9c5c08ff239ffe1ad480459f8a82 Mon Sep 17 00:00:00 2001 From: Ivan Izaguirre Date: Wed, 23 Sep 2020 18:12:28 +0200 Subject: [PATCH] RGB video modes available only with RGB card --- softSwitches2.go | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/softSwitches2.go b/softSwitches2.go index d594ea1..a62820a 100644 --- a/softSwitches2.go +++ b/softSwitches2.go @@ -21,8 +21,10 @@ const ( ioDataPaddle2 uint8 = 0x66 ioDataPaddle3 uint8 = 0x67 - ioFlag1RGBCard uint8 = 0x7e // Not real softSwitches. Using the numbers to store the flags somewhere. - ioFlag2RGBCard uint8 = 0x7f + // Not real softSwitches. Using the numbers to store the flags somewhere. + ioFlagRGBCardActive uint8 = 0x7d + ioFlag1RGBCard uint8 = 0x7e + ioFlag2RGBCard uint8 = 0x7f ) func addApple2SoftSwitches(io *ioC0Page) {