mp_msg: make MSGL_STATUS use the same color as MSGL_INFO

The green status line is annoying.
This commit is contained in:
wm4 2012-09-23 15:25:01 +02:00
parent b2ba73c7b6
commit bcbc30e487
1 changed files with 1 additions and 1 deletions

View File

@ -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 */