diff options
Diffstat (limited to 'mp_msg.c')
-rw-r--r-- | mp_msg.c | 14 |
1 files changed, 11 insertions, 3 deletions
@@ -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; |