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

View file

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

View file

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

View file

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