From: nethack.allison Date: Sat, 8 Mar 2003 23:47:14 +0000 (+0000) Subject: win32tty distinguish between black/gray/white X-Git-Tag: MOVE2GIT~2106 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=daed1ff394e960febf271df7e1c48b4db1528444;p=nethack win32tty distinguish between black/gray/white --- diff --git a/doc/fixes34.2 b/doc/fixes34.2 index 70028e6a2..6e4e5955e 100644 --- a/doc/fixes34.2 +++ b/doc/fixes34.2 @@ -11,6 +11,7 @@ Platform- and/or Interface-Specific Fixes Gnome: compilation problems on Redhat 7.2 and 8.0 unix: Makefile.utl would put OBJDIR objects in the wrong directory win32tty: add subkeyvalue option to alter key values; Finnish keyboard fix +win32tty: distinguish between black/gray/white (by Quietust) General New Features diff --git a/sys/winnt/nttty.c b/sys/winnt/nttty.c index 867f71a2a..9420de205 100644 --- a/sys/winnt/nttty.c +++ b/sys/winnt/nttty.c @@ -758,7 +758,7 @@ cl_eos() static void init_ttycolor() { - ttycolors[CLR_BLACK] = FOREGROUND_GREEN|FOREGROUND_BLUE|FOREGROUND_RED; + ttycolors[CLR_BLACK] = FOREGROUND_INTENSITY; /* fix by Quietust */ ttycolors[CLR_RED] = FOREGROUND_RED; ttycolors[CLR_GREEN] = FOREGROUND_GREEN; ttycolors[CLR_BROWN] = FOREGROUND_GREEN|FOREGROUND_RED;