summaryrefslogtreecommitdiffstats
path: root/mp_msg.c
diff options
context:
space:
mode:
authorwm4 <wm4@nowhere>2012-09-23 15:25:01 +0200
committerwm4 <wm4@nowhere>2012-09-23 15:25:01 +0200
commitbcbc30e48725ef051d582b56285c064d1ad3f299 (patch)
treefdfe734346a88b146686f2e280d9c4b9e58551a2 /mp_msg.c
parentb2ba73c7b62f24326d62dd0a263942038146afaa (diff)
downloadmpv-bcbc30e48725ef051d582b56285c064d1ad3f299.tar.bz2
mpv-bcbc30e48725ef051d582b56285c064d1ad3f299.tar.xz
mp_msg: make MSGL_STATUS use the same color as MSGL_INFO
The green status line is annoying.
Diffstat (limited to 'mp_msg.c')
-rw-r--r--mp_msg.c2
1 files changed, 1 insertions, 1 deletions
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 */