Fix display of time with the "Black on White" theme.

This commit is contained in:
Hisham Muhammad 2008-03-05 06:39:29 +00:00
parent cf7fdcd1d6
commit 37bb2fc5c7
1 changed files with 1 additions and 1 deletions

2
CRT.c
View File

@ -306,7 +306,7 @@ void CRT_setColors(int colorScheme) {
CRT_colors[CPU_NICE] = ColorPair(Cyan,White);
CRT_colors[CPU_NORMAL] = ColorPair(Green,White);
CRT_colors[CPU_KERNEL] = ColorPair(Red,White);
CRT_colors[CLOCK] = ColorPair(White,White);
CRT_colors[CLOCK] = ColorPair(Black,White);
CRT_colors[CHECK_BOX] = ColorPair(Blue,White);
CRT_colors[CHECK_MARK] = ColorPair(Black,White);
CRT_colors[CHECK_TEXT] = ColorPair(Black,White);