From: Ray Chason Date: Sun, 26 Jan 2020 01:44:17 +0000 (-0500) Subject: Make background appear as a proper black X-Git-Tag: NetHack-3.7.0_WIP~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b52392a5bc63e8bf98fe55b6a1ef49fd024f2545;p=nethack Make background appear as a proper black --- 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 */