summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mp_msg.c14
1 files changed, 11 insertions, 3 deletions
diff --git a/mp_msg.c b/mp_msg.c
index c6bb3bc942..c3d8db22a5 100644
--- a/mp_msg.c
+++ b/mp_msg.c
@@ -131,8 +131,10 @@ void mp_msg(int mod, int lev, const char *format, ... ){
"V",
"DGB2",
"DGB3",
- "DGB4"};
- static const char *mod_text[]= {
+ "DGB4",
+ "DBG5",
+ };
+ static const char *mod_text[MSGT_MAX]= {
"GLOBAL",
"CPLAYER",
"GPLAYER",
@@ -172,7 +174,13 @@ void mp_msg(int mod, int lev, const char *format, ... ){
"SUBREADER",
"AFILTER",
"NETST",
- "MUXER"};
+ "MUXER",
+ "OSDMENU",
+ "IDENTIFY",
+ "RADIO",
+ "ASS",
+ "LOADER",
+ };
int c=v_colors[lev];
int c2=(mod+1)%15+1;