]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - vid_glx.c
fixed black fullbrights on models in realtime mode
[xonotic/darkplaces.git] / vid_glx.c
index 293cd098660916f731adf6c46984acafc2720a99..6aeb59220f00dc40967e4142c61536c95383e05a 100644 (file)
--- a/vid_glx.c
+++ b/vid_glx.c
@@ -42,6 +42,9 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
 #include "quakedef.h"
 
+// Tell startup code that we have a client
+int cl_available = true;
+
 //GLX prototypes
 XVisualInfo *(GLAPIENTRY *qglXChooseVisual)(Display *dpy, int screen, int *attribList);
 GLXContext (GLAPIENTRY *qglXCreateContext)(Display *dpy, XVisualInfo *vis, GLXContext shareList, Bool direct);
@@ -684,7 +687,7 @@ int VID_InitMode(int fullscreen, int width, int height, int bpp)
 #if defined(__APPLE__) && defined(__MACH__)
        drivername = "/usr/X11R6/lib/libGL.1.dylib";
 #else
-       drivername = "libGL.so.1"
+       drivername = "libGL.so.1";
 #endif
        i = COM_CheckParm("-gl_driver");
        if (i && i < com_argc - 1)