o removing the build number from the version string.

git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@340 67975925-1194-0748-b3d5-c16f83f1a3a1
This commit is contained in:
puzl 2005-09-29 23:42:31 +00:00
parent cb2abb1e1b
commit a1d362030c

View file

@ -189,7 +189,7 @@ char* AvHSUGetGameVersionString()
string theGameVersionString;
theGameVersionString = "v" + MakeStringFromInt(BALANCE_VAR(kGameVersionMajor)) + "." + MakeStringFromInt(BALANCE_VAR(kGameVersionMinor)) + "." + MakeStringFromInt(BALANCE_VAR(kGameVersionRevision)) + "-328";
theGameVersionString = "v" + MakeStringFromInt(BALANCE_VAR(kGameVersionMajor)) + "." + MakeStringFromInt(BALANCE_VAR(kGameVersionMinor)) + "." + MakeStringFromInt(BALANCE_VAR(kGameVersionRevision));
//memset(theGameVersion, 0, 1024);
strcpy(theGameVersion, theGameVersionString.c_str());