Bug Fixes

This commit is contained in:
David Wilson
2003-12-17 02:41:14 +00:00
parent 8f7347b915
commit 3367ada9f0
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -33,7 +33,7 @@ FootModel::FootModel(Steps* model)
if (model->GetDifficulty() == DIFFICULTY_EASY) m_predictedMeter += LIGHT;
}
FootModel::GetPMeter()
double FootModel::GetPMeter()
{
return m_predictedMeter;
}
+1 -1
View File
@@ -35,6 +35,6 @@ private:
public:
FootModel(Steps* model);
double GetPMeter;
double GetPMeter();
};
#endif