Revert "GL: Make errors non-fatal"

Turns out this just caused segfaults further down the line.  Oops.

This reverts commit 268d61e00c.
This commit is contained in:
Daniel Stone 2008-05-09 00:26:16 +03:00
parent f17ba5d584
commit 1c54c14889
2 changed files with 2 additions and 2 deletions

View File

@ -288,7 +288,7 @@ void GlxExtensionInit(void)
__glXDispatch, ResetExtension,
StandardMinorOpcode);
if (!extEntry) {
ErrorF("__glXExtensionInit: AddExtensions failed\n");
FatalError("__glXExtensionInit: AddExtensions failed\n");
return;
}
if (!AddExtensionAlias(GLX_EXTENSION_ALIAS, extEntry)) {

View File

@ -510,7 +510,7 @@ handle_error:
xfree(screen);
ErrorF("GLX: could not load software renderer\n");
FatalError("GLX: could not load software renderer\n");
return NULL;
}