fix broken LastPlayed saving

This commit is contained in:
Chris Danford
2005-06-14 23:20:19 +00:00
parent e1d829f8e5
commit 45e66beddf
+2 -2
View File
@@ -140,9 +140,9 @@ void HighScoreList::AddHighScore( HighScore hs, int &iIndexOut, bool bIsMachine
} }
} }
void HighScoreList::IncrementPlayCount( DateTime dtLastPlayed ) void HighScoreList::IncrementPlayCount( DateTime _dtLastPlayed )
{ {
dtLastPlayed = dtLastPlayed; dtLastPlayed = _dtLastPlayed;
iNumTimesPlayed++; iNumTimesPlayed++;
} }