From bcbc30e48725ef051d582b56285c064d1ad3f299 Mon Sep 17 00:00:00 2001 From: wm4 Date: Sun, 23 Sep 2012 15:25:01 +0200 Subject: [PATCH] mp_msg: make MSGL_STATUS use the same color as MSGL_INFO The green status line is annoying. --- mp_msg.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mp_msg.c b/mp_msg.c index eb38e9e531..0a4a786979 100644 --- a/mp_msg.c +++ b/mp_msg.c @@ -103,7 +103,7 @@ int mp_msg_test(int mod, int lev) static void set_msg_color(FILE* stream, int lev) { - static const unsigned char v_colors[10] = {9, 1, 3, 15, 7, 2, 2, 8, 8, 8}; + static const unsigned char v_colors[10] = {9, 1, 3, 15, 7, 7, 2, 8, 8, 8}; int c = v_colors[lev]; #ifdef MP_ANNOY_ME /* that's only a silly color test */