1
0
mirror of https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git synced 2025-07-18 19:29:09 +00:00

Simple FeatureLib fixes.

This commit is contained in:
Darryl Pogue
2011-08-06 14:46:47 -07:00
parent e9f54e9547
commit c4bf08d177
2 changed files with 3 additions and 3 deletions

View File

@ -113,7 +113,7 @@ public:
tokenType *MakeToken(T parentObject) {return TRACKED_NEW tokenType(parentObject, fGroup);} tokenType *MakeToken(T parentObject) {return TRACKED_NEW tokenType(parentObject, fGroup);}
// return the number of tokens currently in the database // return the number of tokens currently in the database
int Size(void) {return group.size();} int Size(void) {return fGroup.size();}
}; };
// A basic vehicle class that handles accelleration, braking, and turning // A basic vehicle class that handles accelleration, braking, and turning

View File

@ -613,11 +613,11 @@ void plLineFollowMod::RemoveStereizer(const plKey& key)
// it. // it.
plRailCameraMod::plRailCameraMod() : plRailCameraMod::plRailCameraMod() :
plLineFollowMod(),
fCurrentTime(0.0f), fCurrentTime(0.0f),
fTargetTime(0.0f), fTargetTime(0.0f),
fFarthest(false) fFarthest(false)
{ {
plLineFollowMod::plLineFollowMod();
fGoal.Set(0,0,0); fGoal.Set(0,0,0);
} }