mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2025-02-16 16:51:16 +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
|
#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"
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue