mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-26 13:50:53 +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`
|
M_LDFLAGS=$(MLDFLAGS) -lmingw32 -lws2_32 `$(SDLCONFIG) --static-libs`
|
||||||
SV_LDFLAGS=`$(SDLCONFIG) --static-libs`
|
SV_LDFLAGS=`$(SDLCONFIG) --static-libs`
|
||||||
else
|
else
|
||||||
GL_LDFLAGS=$(GLLDFLAGS) $(IMAGELDFLAGS) `$(SDLCONFIG) --static-libs`
|
GL_LDFLAGS=$(GLLDFLAGS) $(IMAGELDFLAGS) `$(SDLCONFIG) --libs`
|
||||||
VK_LDFLAGS=$(VKLDFLAGS) $(IMAGELDFLAGS) `$(SDLCONFIG) --static-libs`
|
VK_LDFLAGS=$(VKLDFLAGS) $(IMAGELDFLAGS) `$(SDLCONFIG) --libs`
|
||||||
M_LDFLAGS=$(MLDFLAGS) $(IMAGELDFLAGS) `$(SDLCONFIG) --static-libs`
|
M_LDFLAGS=$(MLDFLAGS) $(IMAGELDFLAGS) `$(SDLCONFIG) --libs`
|
||||||
SV_LDFLAGS=`$(SDLCONFIG) --static-libs`
|
SV_LDFLAGS=`$(SDLCONFIG) --libs`
|
||||||
endif
|
endif
|
||||||
GL_CFLAGS=-DFTE_SDL $(GLCFLAGS) `$(SDLCONFIG) --cflags`
|
GL_CFLAGS=-DFTE_SDL $(GLCFLAGS) `$(SDLCONFIG) --cflags`
|
||||||
GLB_DIR=gl_$(FTE_FULLTARGET)
|
GLB_DIR=gl_$(FTE_FULLTARGET)
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if SDL_MAJOR_VERSION >=2
|
#if SDL_MAJOR_VERSION >=2
|
||||||
SDL_Window *sdlwindow;
|
extern SDL_Window *sdlwindow;
|
||||||
#else
|
#else
|
||||||
extern SDL_Surface *sdlsurf;
|
extern SDL_Surface *sdlsurf;
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -23,7 +23,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if SDL_MAJOR_VERSION >= 2
|
#if SDL_MAJOR_VERSION >= 2
|
||||||
SDL_Window *sdlwindow;
|
extern SDL_Window *sdlwindow;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifndef isDedicated
|
#ifndef isDedicated
|
||||||
|
|
|
@ -44,7 +44,7 @@ extern qboolean vid_isfullscreen;
|
||||||
unsigned short intitialgammaramps[3][256];
|
unsigned short intitialgammaramps[3][256];
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
qboolean mouseactive;
|
extern qboolean mouseactive;
|
||||||
extern qboolean mouseusedforgui;
|
extern qboolean mouseusedforgui;
|
||||||
|
|
||||||
#ifdef OPENGL_SDL
|
#ifdef OPENGL_SDL
|
||||||
|
|
Loading…
Reference in a new issue