From 3367ada9f005a5d57d77a13765e220602d302c8e Mon Sep 17 00:00:00 2001 From: David Wilson Date: Wed, 17 Dec 2003 02:41:14 +0000 Subject: [PATCH] Bug Fixes --- stepmania/src/FootModel.cpp | 2 +- stepmania/src/FootModel.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/FootModel.cpp b/stepmania/src/FootModel.cpp index c2fef5b319..2a0c17e3a8 100644 --- a/stepmania/src/FootModel.cpp +++ b/stepmania/src/FootModel.cpp @@ -33,7 +33,7 @@ FootModel::FootModel(Steps* model) if (model->GetDifficulty() == DIFFICULTY_EASY) m_predictedMeter += LIGHT; } -FootModel::GetPMeter() +double FootModel::GetPMeter() { return m_predictedMeter; } \ No newline at end of file diff --git a/stepmania/src/FootModel.h b/stepmania/src/FootModel.h index 711063211f..d535d05e61 100644 --- a/stepmania/src/FootModel.h +++ b/stepmania/src/FootModel.h @@ -35,6 +35,6 @@ private: public: FootModel(Steps* model); - double GetPMeter; + double GetPMeter(); }; #endif \ No newline at end of file