win32tty distinguish between black/gray/white

This commit is contained in:
nethack.allison
2003-03-08 23:47:14 +00:00
parent 37f09d3bb0
commit daed1ff394
2 changed files with 2 additions and 1 deletions

View File

@@ -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

View File

@@ -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;