floating-point scores

This commit is contained in:
Glenn Maynard
2003-10-12 21:51:02 +00:00
parent 607666d330
commit 4c5b32db02
5 changed files with 31 additions and 24 deletions
+3 -3
View File
@@ -58,11 +58,11 @@ public:
{
int iNumTimesPlayed;
Grade grade;
int iScore;
bool HigherScore( int iScore, Grade grade ) const;
float fScore;
bool HigherScore( float fScore, Grade grade ) const;
} m_MemCardScores[NUM_MEMORY_CARDS];
void AddScore( PlayerNumber pn, Grade grade, int iScore, bool& bNewRecordOut );
void AddScore( PlayerNumber pn, Grade grade, float fScore, bool& bNewRecordOut );
void TidyUpData();