diff 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
line wrap: on
line diff
--- a/mp_msg.c	Sat Aug 31 15:59:10 2002 +0000
+++ b/mp_msg.c	Sat Aug 31 16:20:07 2002 +0000
@@ -69,9 +69,14 @@
 	    case MSGL_ERR:
 		gtkMessageBox(GTK_MB_ERROR|GTK_MB_SIMPLE, tmp);
 		break;
+#if 0
+// WARNING! Do NOT enable this! There are too many non-critical messages with
+// MSGL_WARN, for example: broken SPU packets, codec's bit error messages,
+// etc etc, they should not raise up a new window every time.
 	    case MSGL_WARN:
 		gtkMessageBox(GTK_MB_WARNING|GTK_MB_SIMPLE, tmp);
 		break;
+#endif
 	}
     }
 #endif