git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@5784 fc73d0e0-1445-4013-8a0c-d673dee63da5

This commit is contained in:
Eukara 2020-11-03 15:52:26 +00:00
parent e649f6ebdb
commit 5d5067ed82
4 changed files with 7 additions and 7 deletions

View File

@ -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)

View File

@ -8,7 +8,7 @@
#endif
#if SDL_MAJOR_VERSION >=2
SDL_Window *sdlwindow;
extern SDL_Window *sdlwindow;
#else
extern SDL_Surface *sdlsurf;
#endif

View File

@ -23,7 +23,7 @@
#endif
#if SDL_MAJOR_VERSION >= 2
SDL_Window *sdlwindow;
extern SDL_Window *sdlwindow;
#endif
#ifndef isDedicated

View File

@ -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