From 45e66beddf898013ac65bea3a1163724148080e0 Mon Sep 17 00:00:00 2001 From: Chris Danford Date: Tue, 14 Jun 2005 23:20:19 +0000 Subject: [PATCH] fix broken LastPlayed saving --- stepmania/src/HighScore.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/stepmania/src/HighScore.cpp b/stepmania/src/HighScore.cpp index 22252aabc9..786b91c58e 100644 --- a/stepmania/src/HighScore.cpp +++ b/stepmania/src/HighScore.cpp @@ -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++; }