From a18730ee138f230bbfc21c3c6ce5cac0b098a511 Mon Sep 17 00:00:00 2001 From: Maarten ter Huurne Date: Thu, 20 Dec 2012 17:54:15 +0100 Subject: [PATCH] Changed text color of warnings from yellow to magenta Yellow is almost unreadable if the console background is white. --- src/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/debug.h b/src/debug.h index 12e101b..2086788 100644 --- a/src/debug.h +++ b/src/debug.h @@ -20,7 +20,7 @@ #define COLOR_DEBUG "\e[0;34m" #endif #ifndef COLOR_WARNING -#define COLOR_WARNING "\e[01;33m" +#define COLOR_WARNING "\e[01;35m" #endif #ifndef COLOR_ERROR #define COLOR_ERROR "\e[01;31m"