From a5ae95bb28aac5506f45e40d0748944816372cbb Mon Sep 17 00:00:00 2001 From: casey langen Date: Sat, 11 Mar 2017 17:31:06 -0800 Subject: [PATCH] Ensure we don't use any custom colors if custom colors are disabled! --- src/musikbox/cursespp/Colors.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/musikbox/cursespp/Colors.cpp b/src/musikbox/cursespp/Colors.cpp index 71e0764ae..d1a73dab9 100755 --- a/src/musikbox/cursespp/Colors.cpp +++ b/src/musikbox/cursespp/Colors.cpp @@ -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)