o changed revision to 3.1.3

o added -test1 to game revision
o changed a function to virtual to try to prevent a crash

git-svn-id: https://unknownworlds.svn.cloudforge.com/ns1@380 67975925-1194-0748-b3d5-c16f83f1a3a1
This commit is contained in:
puzl 2006-04-07 07:38:58 +00:00
parent 5dcc163bd5
commit 0e70fd1136
3 changed files with 3 additions and 3 deletions

View File

@ -120,7 +120,7 @@
#define kGameHDSpaceNeeded 300
#define kGameVersionMajor 3
#define kGameVersionMinor 1
#define kGameVersionRevision 2
#define kGameVersionRevision 3
#define kGestateBaseArmor 150
#define kGestateHealth 200
#define kGorgeArmorUpgrade 50

View File

@ -196,7 +196,7 @@ public:
virtual void UpdateInventoryEnabledState(int inNumActiveHives);
// Methods for placing in the map
void EXPORT VirtualDestroyItem(void);
virtual void EXPORT VirtualDestroyItem(void);
virtual int GetLifetime() const;
virtual bool GetIsPersistent() const;
virtual void SetPersistent();

View File

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