mirror of
https://github.com/ENSL/NS.git
synced 2024-11-10 15:21:54 +00:00
v3.1.3 final
git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@383 67975925-1194-0748-b3d5-c16f83f1a3a1
This commit is contained in:
parent
8d325154e3
commit
e1b5c1f520
3 changed files with 2 additions and 2 deletions
Binary file not shown.
|
@ -34,7 +34,7 @@ OUTPUT_DIR=../../hlds_l/ns/dlls
|
|||
BASE_CFLAGS=-Dstricmp=strcasecmp -D_strnicmp=strncasecmp -Dstrnicmp=strncasecmp -DAVH_SERVER -DLINUX -DVALVE_DLL -DQUIVER -DVOXEL -DQUAKE2 -DDEDICATED -DSWDS -D_STLP_USE_GLIBC -DUSE_OLDAUTH
|
||||
|
||||
#full optimization
|
||||
CFLAGS=$(BASE_CFLAGS) -w -Wall -nostdinc++ -ffor-scope -fPIC -mcpu=i486 -O3 -pipe -funroll-loops -fdelayed-branch -malign-loops=4 -malign-jumps=4 -malign-functions=4
|
||||
CFLAGS=$(BASE_CFLAGS) -w -Wall -nostdinc++ -ffor-scope -fPIC -mcpu=i486 -s -O3 -pipe -funroll-loops -fdelayed-branch -malign-loops=4 -malign-jumps=4 -malign-functions=4
|
||||
|
||||
#use these when debugging
|
||||
#CFLAGS=$(BASE_CFLAGS) -fPIC -fno-for-scope
|
||||
|
|
|
@ -190,7 +190,7 @@ char* AvHSUGetGameVersionString()
|
|||
string theGameVersionString;
|
||||
|
||||
theGameVersionString = "v" + MakeStringFromInt(BALANCE_VAR(kGameVersionMajor)) + "." + MakeStringFromInt(BALANCE_VAR(kGameVersionMinor)) + "." +
|
||||
MakeStringFromInt(BALANCE_VAR(kGameVersionRevision)) + "-test1";
|
||||
MakeStringFromInt(BALANCE_VAR(kGameVersionRevision));
|
||||
|
||||
//memset(theGameVersion, 0, 1024);
|
||||
strcpy(theGameVersion, theGameVersionString.c_str());
|
||||
|
|
Loading…
Reference in a new issue