mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-22 11:51:17 +00:00
do_grab() was a typo, should be do_grabs()
This commit is contained in:
parent
0206281103
commit
b5e7641bce
2 changed files with 7 additions and 3 deletions
|
@ -2,7 +2,9 @@
|
|||
#undef VERSION
|
||||
|
||||
/* 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*/
|
||||
#undef GLAPIENTRY
|
||||
|
@ -26,7 +28,9 @@
|
|||
#undef USE_BSD_CD
|
||||
|
||||
/* Define this to use experimental code */
|
||||
#undef _EXPERIMENTAL_
|
||||
#ifndef _EXPERIMENTAL_
|
||||
#define _EXPERIMENTAL_
|
||||
#endif
|
||||
|
||||
#if defined(X11)
|
||||
# define OUTPUT_STR "X11"
|
||||
|
|
|
@ -346,7 +346,7 @@ do_fullscreen(int full)
|
|||
/* We are in XMesa fullscren mode and couldn't switch back
|
||||
to windowed mode ??? */
|
||||
Cvar_SetValue("vid_glx_fullscreen", fullscreen);
|
||||
do_grab(mouse_shouldgrab);
|
||||
do_grabs(mouse_shouldgrab);
|
||||
return;
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue