curses color cleanup

The color handling changes for curses left a set of variables
unused, so get rid of them.
This commit is contained in:
PatR
2021-06-06 15:23:39 -07:00
parent e20dd2e760
commit 14b2330fd6
+2 -13
View File
@@ -18,24 +18,13 @@ static void set_window_position(int *, int *, int *, int *, int,
int *, int *, int *, int *, int, int *, int *, int *, int *, int,
int, int); int, int);
/* array to save initial terminal colors for later restoration */ #if 0 /* no longer used */
typedef struct nhrgb_type { typedef struct nhrgb_type {
short r; short r;
short g; short g;
short b; short b;
} nhrgb; } nhrgb;
#endif
nhrgb orig_yellow;
nhrgb orig_white;
nhrgb orig_darkgray;
nhrgb orig_hired;
nhrgb orig_higreen;
nhrgb orig_hiyellow;
nhrgb orig_hiblue;
nhrgb orig_himagenta;
nhrgb orig_hicyan;
nhrgb orig_hiwhite;
/* Banners used for an optional ASCII splash screen */ /* Banners used for an optional ASCII splash screen */