Ensure we don't use any custom colors if custom colors are disabled!

This commit is contained in:
casey langen 2017-03-11 17:31:06 -08:00
parent c28a909378
commit a5ae95bb28

View File

@ -71,10 +71,10 @@ static int yellow = COLOR_YELLOW;
static int green = COLOR_GREEN;
static int black = COLOR_BLACK;
static int orange = COLOR_YELLOW;
static int foreground = COLOR_WHITE;
static int foreground = -1;
static int background = -1;
static int selected = -1;
static int grey = COLOR_WHITE;
static int grey = -1;
#define SCALE(x) ((x * 1000) / 255)