comparison mp_msg.c @ 7205:9d11474c39af

WARNING message gui windows disabled, the only critical warn message (too slow) moved to ERROR
author arpi
date Sat, 31 Aug 2002 16:20:07 +0000
parents 9a123ba671fd
children b2e4f9dab7ad
comparison
equal deleted inserted replaced
7204:eee464fa02c1 7205:9d11474c39af
67 gtkMessageBox(GTK_MB_FATAL|GTK_MB_SIMPLE, tmp); 67 gtkMessageBox(GTK_MB_FATAL|GTK_MB_SIMPLE, tmp);
68 break; 68 break;
69 case MSGL_ERR: 69 case MSGL_ERR:
70 gtkMessageBox(GTK_MB_ERROR|GTK_MB_SIMPLE, tmp); 70 gtkMessageBox(GTK_MB_ERROR|GTK_MB_SIMPLE, tmp);
71 break; 71 break;
72 #if 0
73 // WARNING! Do NOT enable this! There are too many non-critical messages with
74 // MSGL_WARN, for example: broken SPU packets, codec's bit error messages,
75 // etc etc, they should not raise up a new window every time.
72 case MSGL_WARN: 76 case MSGL_WARN:
73 gtkMessageBox(GTK_MB_WARNING|GTK_MB_SIMPLE, tmp); 77 gtkMessageBox(GTK_MB_WARNING|GTK_MB_SIMPLE, tmp);
74 break; 78 break;
79 #endif
75 } 80 }
76 } 81 }
77 #endif 82 #endif
78 83
79 #ifdef MSG_USE_COLORS 84 #ifdef MSG_USE_COLORS