aboutsummaryrefslogtreecommitdiffstats
path: root/CRT.c
diff options
context:
space:
mode:
Diffstat (limited to 'CRT.c')
-rw-r--r--CRT.c32
1 files changed, 17 insertions, 15 deletions
diff --git a/CRT.c b/CRT.c
index 237e30e..ca9a10d 100644
--- a/CRT.c
+++ b/CRT.c
@@ -37,6 +37,7 @@ in the source distribution for its full text.
#define White COLOR_WHITE
#define ColorPairGrayBlack ColorPair(Magenta,Magenta)
+#define ColorIndexGrayBlack ColorIndex(Magenta,Magenta)
#define KEY_WHEELUP KEY_F(20)
#define KEY_WHEELDOWN KEY_F(21)
@@ -713,22 +714,23 @@ void CRT_enableDelay() {
void CRT_setColors(int colorScheme) {
CRT_colorScheme = colorScheme;
- if (colorScheme == COLORSCHEME_BLACKNIGHT) {
- for (int i = 0; i < 8; i++)
- for (int j = 0; j < 8; j++) {
- if (ColorIndex(i,j) != ColorIndex(Magenta,Magenta)) {
- init_pair(ColorIndex(i,j), i, j);
- }
- }
- init_pair(ColorIndex(Magenta,Magenta), 8, 0);
- } else {
- for (int i = 0; i < 8; i++)
- for (int j = 0; j < 8; j++) {
- if (ColorIndex(i,j) != ColorIndex(Magenta,Magenta)) {
- init_pair(ColorIndex(i,j), i, (j==0?-1:j));
- }
+
+ for (int i = 0; i < 8; i++) {
+ for (int j = 0; j < 8; j++) {
+ if (ColorIndex(i,j) != ColorPairGrayBlack) {
+ int bg = (colorScheme != COLORSCHEME_BLACKNIGHT)
+ ? (j==0 ? -1 : j)
+ : j;
+ init_pair(ColorIndex(i,j), i, bg);
}
- init_pair(ColorIndex(Magenta,Magenta), 8, -1);
+ }
}
+
+ int grayBlackFg = COLORS > 8 ? 8 : 0;
+ int grayBlackBg = (colorScheme != COLORSCHEME_BLACKNIGHT)
+ ? -1
+ : 0;
+ init_pair(ColorIndexGrayBlack, grayBlackFg, grayBlackBg);
+
CRT_colors = CRT_colorSchemes[colorScheme];
}

© 2014-2024 Faster IT GmbH | imprint | privacy policy