mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-17 22:50:51 +00:00
Clean up the "fxMesa" error message so it makes more sense, and so most people
will actually see it if they need it.
This commit is contained in:
parent
9a2ba662bd
commit
065ec7ff39
1 changed files with 3 additions and 4 deletions
|
@ -85,10 +85,9 @@ QFGL_ProcAddress (void *handle, const char *name, qboolean crit)
|
|||
|
||||
if (crit) {
|
||||
if (strncmp ("fxMesa", name, 6) == 0) {
|
||||
Con_DPrintf ("This is a console-only client. It requires a "
|
||||
"mesa-glide compatable library.\n");
|
||||
Con_DPrintf ("If you are trying to run OpenGL QuakeForge in X, "
|
||||
"please use a -glx or -sgl target.\n");
|
||||
Con_Printf ("This target requires a special version of Mesa with "
|
||||
"support for Glide and SVGAlib.\n");
|
||||
Con_Printf ("If you are in X, try using a GLX or SGL target.\n");
|
||||
}
|
||||
Sys_Error ("Couldn't load critical OpenGL function %s, exiting...",
|
||||
name);
|
||||
|
|
Loading…
Reference in a new issue