rename iMaxScoreToNow -> iCurMaxScore, to look like iCurCombo, iCurMissCombo

This commit is contained in:
Glenn Maynard
2005-01-10 15:26:21 +00:00
parent c7c28b9aea
commit faa835f980
4 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -18,7 +18,7 @@ void PlayerStageStats::Init()
fAliveSeconds = 0;
bFailed = bFailedEarlier = false;
iPossibleDancePoints = iActualDancePoints = 0;
iCurCombo = iMaxCombo = iCurMissCombo = iScore = iBonus = iMaxScore = iMaxScoreToNow = 0;
iCurCombo = iMaxCombo = iCurMissCombo = iScore = iBonus = iMaxScore = iCurMaxScore = 0;
fSecondsBeforeFail = 0;
iSongsPassed = iSongsPlayed = 0;
iTotalError = 0;
@@ -51,7 +51,7 @@ void PlayerStageStats::AddStats( const PlayerStageStats& other )
iCurMissCombo += other.iCurMissCombo;
iScore += other.iScore;
iMaxScore += other.iMaxScore;
iMaxScoreToNow += other.iMaxScoreToNow;
iCurMaxScore += other.iCurMaxScore;
radarPossible += other.radarPossible;
radarActual += other.radarActual;
fSecondsBeforeFail += other.fSecondsBeforeFail;