win32: don't prepend all debug with gallium3d

This commit is contained in:
Keith Whitwell
2008-03-03 17:49:38 +01:00
parent 800d13df72
commit 689e1c5d50

View File

@@ -43,7 +43,7 @@
void debug_vprintf(const char *format, va_list ap)
{
#ifdef WIN32
EngDebugPrint("Gallium3D: ", (PCHAR)format, ap);
EngDebugPrint("", (PCHAR)format, ap);
#else
vfprintf(stderr, format, ap);
#endif