From b52392a5bc63e8bf98fe55b6a1ef49fd024f2545 Mon Sep 17 00:00:00 2001 From: Ray Chason Date: Sat, 25 Jan 2020 20:44:17 -0500 Subject: [PATCH] Make background appear as a proper black --- sys/msdos/vidvesa.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/msdos/vidvesa.c b/sys/msdos/vidvesa.c index 9294c3fb8..39b27c4b3 100644 --- a/sys/msdos/vidvesa.c +++ b/sys/msdos/vidvesa.c @@ -108,7 +108,7 @@ static int viewport_cols = 40; static int viewport_rows = ROWNO; static const struct Pixel defpalette[] = { /* Colors for text and the position bar */ - { 0x18, 0x18, 0x18, 0xff }, /* CLR_BLACK */ + { 0x00, 0x00, 0x00, 0xff }, /* CLR_BLACK */ { 0xaa, 0x00, 0x00, 0xff }, /* CLR_RED */ { 0x00, 0xaa, 0x00, 0xff }, /* CLR_GREEN */ { 0x99, 0x40, 0x00, 0xff }, /* CLR_BROWN */