]> granicus.if.org Git - nethack/commitdiff
win32tty distinguish between black/gray/white
authornethack.allison <nethack.allison>
Sat, 8 Mar 2003 23:47:14 +0000 (23:47 +0000)
committernethack.allison <nethack.allison>
Sat, 8 Mar 2003 23:47:14 +0000 (23:47 +0000)
doc/fixes34.2
sys/winnt/nttty.c

index 70028e6a20a16a0f6e7fa235995918a45f0121f7..6e4e5955e6ce5b7f1995949b99c9098ad3a758eb 100644 (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
index 867f71a2a074d3446df6a30c4461e5b4046d6b39..9420de205d868c4c5da6fd4aaad79e879ff67a80 100644 (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;