do_grab() was a typo, should be do_grabs()

This commit is contained in:
Nelson Rush 2000-01-15 04:41:33 +00:00
parent 0206281103
commit b5e7641bce
2 changed files with 7 additions and 3 deletions

View file

@ -2,7 +2,9 @@
#undef VERSION #undef VERSION
/* Define if you have the XFree86 DGA extension */ /* Define if you have the XFree86 DGA extension */
#undef HAS_DGA #ifndef HAS_DGA
#define HAS_DGA
#endif
/* If your version of OpenGL uses APIENTRY, define GLAPIENTRY to be APIENTRY*/ /* If your version of OpenGL uses APIENTRY, define GLAPIENTRY to be APIENTRY*/
#undef GLAPIENTRY #undef GLAPIENTRY
@ -26,7 +28,9 @@
#undef USE_BSD_CD #undef USE_BSD_CD
/* Define this to use experimental code */ /* Define this to use experimental code */
#undef _EXPERIMENTAL_ #ifndef _EXPERIMENTAL_
#define _EXPERIMENTAL_
#endif
#if defined(X11) #if defined(X11)
# define OUTPUT_STR "X11" # define OUTPUT_STR "X11"

View file

@ -346,7 +346,7 @@ do_fullscreen(int full)
/* We are in XMesa fullscren mode and couldn't switch back /* We are in XMesa fullscren mode and couldn't switch back
to windowed mode ??? */ to windowed mode ??? */
Cvar_SetValue("vid_glx_fullscreen", fullscreen); Cvar_SetValue("vid_glx_fullscreen", fullscreen);
do_grab(mouse_shouldgrab); do_grabs(mouse_shouldgrab);
return; return;
} }
#endif #endif