From cb17359921c0193916c69369c179a70631674d09 Mon Sep 17 00:00:00 2001 From: Michel Pollet Date: Sat, 28 Oct 2023 06:15:42 +0100 Subject: [PATCH] video: Fix Amber! #5 Forgot to flip these channels Signed-off-by: Michel Pollet --- src/mii_video.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mii_video.c b/src/mii_video.c index 6c633b0..08fc07a 100644 --- a/src/mii_video.c +++ b/src/mii_video.c @@ -101,7 +101,7 @@ static const uint32_t dhires_colors[] = { static const uint32_t mono[3][2] = { { 0xff000000, C_WHITE }, { 0xff000000, C_GREEN }, - { 0xff000000, C_ORANGE }, + { 0xff000000, HI_RGB(0x14, 0xcf, 0xfd) }, };