mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-22 12:01:25 +00:00
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5784 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
e649f6ebdb
commit
5d5067ed82
4 changed files with 7 additions and 7 deletions
|
@ -1017,10 +1017,10 @@ ifdef windir
|
|||
M_LDFLAGS=$(MLDFLAGS) -lmingw32 -lws2_32 `$(SDLCONFIG) --static-libs`
|
||||
SV_LDFLAGS=`$(SDLCONFIG) --static-libs`
|
||||
else
|
||||
GL_LDFLAGS=$(GLLDFLAGS) $(IMAGELDFLAGS) `$(SDLCONFIG) --static-libs`
|
||||
VK_LDFLAGS=$(VKLDFLAGS) $(IMAGELDFLAGS) `$(SDLCONFIG) --static-libs`
|
||||
M_LDFLAGS=$(MLDFLAGS) $(IMAGELDFLAGS) `$(SDLCONFIG) --static-libs`
|
||||
SV_LDFLAGS=`$(SDLCONFIG) --static-libs`
|
||||
GL_LDFLAGS=$(GLLDFLAGS) $(IMAGELDFLAGS) `$(SDLCONFIG) --libs`
|
||||
VK_LDFLAGS=$(VKLDFLAGS) $(IMAGELDFLAGS) `$(SDLCONFIG) --libs`
|
||||
M_LDFLAGS=$(MLDFLAGS) $(IMAGELDFLAGS) `$(SDLCONFIG) --libs`
|
||||
SV_LDFLAGS=`$(SDLCONFIG) --libs`
|
||||
endif
|
||||
GL_CFLAGS=-DFTE_SDL $(GLCFLAGS) `$(SDLCONFIG) --cflags`
|
||||
GLB_DIR=gl_$(FTE_FULLTARGET)
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
#endif
|
||||
|
||||
#if SDL_MAJOR_VERSION >=2
|
||||
SDL_Window *sdlwindow;
|
||||
extern SDL_Window *sdlwindow;
|
||||
#else
|
||||
extern SDL_Surface *sdlsurf;
|
||||
#endif
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
#endif
|
||||
|
||||
#if SDL_MAJOR_VERSION >= 2
|
||||
SDL_Window *sdlwindow;
|
||||
extern SDL_Window *sdlwindow;
|
||||
#endif
|
||||
|
||||
#ifndef isDedicated
|
||||
|
|
|
@ -44,7 +44,7 @@ extern qboolean vid_isfullscreen;
|
|||
unsigned short intitialgammaramps[3][256];
|
||||
#endif
|
||||
|
||||
qboolean mouseactive;
|
||||
extern qboolean mouseactive;
|
||||
extern qboolean mouseusedforgui;
|
||||
|
||||
#ifdef OPENGL_SDL
|
||||
|
|
Loading…
Reference in a new issue