diff --git a/stepmania/src/PlayerStageStats.cpp b/stepmania/src/PlayerStageStats.cpp index ec30f49cf4..4e32c244ff 100644 --- a/stepmania/src/PlayerStageStats.cpp +++ b/stepmania/src/PlayerStageStats.cpp @@ -31,9 +31,11 @@ void PlayerStageStats::Init() iCurCombo = iMaxCombo = iCurMissCombo = iScore = iBonus = iMaxScore = iCurMaxScore = 0; iSongsPassed = iSongsPlayed = 0; iTotalError = 0; - fCaloriesBurned = 0; iTotalError = 0; fLifeRemainingSeconds = 0; + fCaloriesBurned = 0; + tnsLast = TNS_INVALID; + hnsLast = HNS_INVALID; ZERO( iTapNoteScores ); ZERO( iHoldNoteScores ); diff --git a/stepmania/src/PlayerStageStats.h b/stepmania/src/PlayerStageStats.h index b77fc82895..773868cefa 100644 --- a/stepmania/src/PlayerStageStats.h +++ b/stepmania/src/PlayerStageStats.h @@ -62,6 +62,9 @@ public: // workout float fCaloriesBurned; + TapNoteScore tnsLast; + HoldNoteScore hnsLast; + map fLifeRecord; void SetLifeRecordAt( float fLife, float fStepsSecond ); void GetLifeRecord( float *fLifeOut, int iNumSamples, float fStepsEndSecond ) const;