cleanup of statistics, saving of high scores

This commit is contained in:
Chris Danford
2003-01-24 02:43:07 +00:00
parent c187098400
commit cf8c4f884f
25 changed files with 611 additions and 503 deletions
+4 -5
View File
@@ -52,14 +52,13 @@ public:
// High scores;
int m_iNumTimesPlayed;
struct HighScore
struct MemCardScore
{
Grade grade;
int iScore;
};
HighScore m_MemCardScores[NUM_PLAYERS];
float fScore;
} m_MemCardScores[NUM_PLAYERS];
bool AddMemCardScore( PlayerNumber pn, Grade grade, int iScore ); // return true if new high score
bool AddMemCardRecord( PlayerNumber pn, Grade grade, float fScore ); // return true if new high score
void TidyUpData();