fix OpenGL erorr bug on XP software renderer; use svn:ignore

git-svn-id: svn://svn.icculus.org/netradiant/trunk@85 61c419a2-8eb2-4b30-bcec-8cead039b335
This commit is contained in:
rpolzer
2008-09-18 06:57:13 +00:00
parent 2978848a28
commit 3c8d97704b
19 changed files with 28 additions and 129 deletions

View File

@@ -181,8 +181,13 @@ void error_redirect (const gchar *domain, GLogLevelFlags log_level, const gchar
else
strcat (buf, "\n");
printf ("%s\n", buf);
// spam it...
globalErrorStream() << buf << "\n";
// FIXME why are warnings is_fatal?
#ifndef _DEBUG
if(is_fatal)
#endif
ERROR_MESSAGE("GTK+ error: " << buf);
}