comparison mp_msg.c @ 1934:b024d0c98457

increased max msg size
author arpi
date Sat, 22 Sep 2001 15:43:52 +0000
parents 633a7f0d72a4
children 7d6116e415a3
comparison
equal deleted inserted replaced
1933:72ee87f857d8 1934:b024d0c98457
24 } 24 }
25 } 25 }
26 26
27 void mp_msg_c( int x, const char *format, ... ){ 27 void mp_msg_c( int x, const char *format, ... ){
28 va_list va; 28 va_list va;
29 char tmp[128]; 29 char tmp[8*80];
30 if((x&255)>mp_msg_levels[x>>8]) return; // do not display 30 if((x&255)>mp_msg_levels[x>>8]) return; // do not display
31 va_start(va, format); 31 va_start(va, format);
32 vsnprintf( tmp,128,format,va ); 32 vsnprintf( tmp,128,format,va );
33 /* 33 /*
34 if((x&255)<=MSGL_ERR){ 34 if((x&255)<=MSGL_ERR){