mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2025-01-21 06:50:46 +00:00
Merge branch 'misc/lilium_common' into game/eliteforce
Conflicts: code/qcommon/common.c code/qcommon/q_shared.h
This commit is contained in:
commit
4a063679f8
3 changed files with 19 additions and 15 deletions
7
Makefile
7
Makefile
|
@ -46,6 +46,9 @@ endif
|
|||
ifndef BUILD_RENDERER_OPENGL2
|
||||
BUILD_RENDERER_OPENGL2=
|
||||
endif
|
||||
ifndef BUILD_FINAL
|
||||
BUILD_FINAL =0
|
||||
endif
|
||||
ifndef BUILD_AUTOUPDATER # DON'T build unless you mean to!
|
||||
BUILD_AUTOUPDATER=0
|
||||
endif
|
||||
|
@ -350,6 +353,8 @@ ifeq ($(SDL_CFLAGS),)
|
|||
endif
|
||||
endif
|
||||
|
||||
ifneq ($(BUILD_FINAL),1)
|
||||
|
||||
# Add git version info
|
||||
USE_GIT=
|
||||
ifeq ($(wildcard .git),.git)
|
||||
|
@ -360,6 +365,8 @@ ifeq ($(wildcard .git),.git)
|
|||
endif
|
||||
endif
|
||||
|
||||
endif
|
||||
|
||||
|
||||
#############################################################################
|
||||
# SETUP AND BUILD -- LINUX
|
||||
|
|
|
@ -2789,9 +2789,6 @@ void Com_Init( char *commandLine ) {
|
|||
Cvar_ForceReset( "com_homepath" );
|
||||
}
|
||||
|
||||
if(!com_basegame->string[0])
|
||||
Cvar_ForceReset("com_basegame");
|
||||
|
||||
FS_InitFilesystem ();
|
||||
|
||||
Com_InitJournaling();
|
||||
|
|
Loading…
Reference in a new issue