From 7c78c2261864a9fa9af7d2962bb35e37619e0504 Mon Sep 17 00:00:00 2001 From: Peter Evans Date: Sat, 14 Apr 2018 18:08:59 -0500 Subject: [PATCH] The lores colors have changed; update the test to account for it --- src/apple2/lores.c | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/src/apple2/lores.c b/src/apple2/lores.c index 74f8248..b4865b5 100644 --- a/src/apple2/lores.c +++ b/src/apple2/lores.c @@ -29,20 +29,20 @@ */ static vm_color lores_colors[] = { { 0x00, 0x00, 0x00, 0x00 }, // black - { 0x90, 0x17, 0x40, 0x00 }, // magenta - { 0x40, 0x2c, 0xa5, 0x00 }, // dark blue - { 0xd0, 0x43, 0xe5, 0x00 }, // purple - { 0x00, 0x69, 0x40, 0x00 }, // dark green - { 0x80, 0x80, 0x80, 0x00 }, // gray - { 0x2f, 0x95, 0xe5, 0x00 }, // medium blue - { 0xbf, 0xab, 0xff, 0x00 }, // light blue - { 0x40, 0x54, 0x00, 0x00 }, // brown - { 0xd0, 0x6a, 0x1a, 0x00 }, // orange - { 0x80, 0x80, 0x80, 0x00 }, // gray - { 0xff, 0x96, 0xbf, 0x00 }, // pink - { 0x2f, 0xbc, 0x1a, 0x00 }, // light green - { 0xbf, 0xd3, 0x5a, 0x00 }, // yellow - { 0x6f, 0xe8, 0xbf, 0x00 }, // aquamarine + { 0xff, 0x28, 0x97, 0x00 }, // magenta + { 0x60, 0x4d, 0xbc, 0x00 }, // dark blue + { 0xff, 0x44, 0xfd, 0x00 }, // purple + { 0x00, 0xa3, 0x60, 0x00 }, // dark green + { 0x9c, 0x9c, 0x9c, 0x00 }, // gray + { 0x14, 0xcf, 0xfd, 0x00 }, // medium blue + { 0xd0, 0xc3, 0xff, 0x00 }, // light blue + { 0x60, 0x72, 0x03, 0x00 }, // brown + { 0xff, 0x6a, 0x3c, 0x00 }, // orange + { 0x9c, 0x9c, 0x9c, 0x00 }, // gray + { 0xff, 0xa0, 0xd0, 0x00 }, // pink + { 0x14, 0xf5, 0x3c, 0x00 }, // light green + { 0xd0, 0xdd, 0x81, 0x00 }, // yellow + { 0x72, 0xff, 0xd0, 0x00 }, // aquamarine { 0xff, 0xff, 0xff, 0x00 }, // white };