From fb5ece51fdb065c70ed0f67e7623331240905ad8 Mon Sep 17 00:00:00 2001 From: Glenn Maynard Date: Tue, 5 Apr 2005 02:51:39 +0000 Subject: [PATCH] remove unused (dupe of fAliveSeconds) --- stepmania/src/PlayerStageStats.cpp | 2 -- stepmania/src/PlayerStageStats.h | 1 - 2 files changed, 3 deletions(-) diff --git a/stepmania/src/PlayerStageStats.cpp b/stepmania/src/PlayerStageStats.cpp index 465b4309d5..3600b2a65d 100644 --- a/stepmania/src/PlayerStageStats.cpp +++ b/stepmania/src/PlayerStageStats.cpp @@ -20,7 +20,6 @@ void PlayerStageStats::Init() bFailed = bFailedEarlier = false; iPossibleDancePoints = iActualDancePoints = 0; iCurCombo = iMaxCombo = iCurMissCombo = iScore = iBonus = iMaxScore = iCurMaxScore = 0; - fSecondsBeforeFail = 0; iSongsPassed = iSongsPlayed = 0; iTotalError = 0; fCaloriesBurned = 0; @@ -56,7 +55,6 @@ void PlayerStageStats::AddStats( const PlayerStageStats& other ) iCurMaxScore += other.iCurMaxScore; radarPossible += other.radarPossible; radarActual += other.radarActual; - fSecondsBeforeFail += other.fSecondsBeforeFail; iSongsPassed += other.iSongsPassed; iSongsPlayed += other.iSongsPlayed; iTotalError += other.iTotalError; diff --git a/stepmania/src/PlayerStageStats.h b/stepmania/src/PlayerStageStats.h index 1eeb129fd9..2fb7d07c2e 100644 --- a/stepmania/src/PlayerStageStats.h +++ b/stepmania/src/PlayerStageStats.h @@ -44,7 +44,6 @@ struct PlayerStageStats int iBonus; // bonus to be added on screeneval RadarValues radarPossible; // filled in by ScreenGameplay on start of notes RadarValues radarActual; - float fSecondsBeforeFail; // -1 means didn't/hasn't failed /* The number of songs played and passed, respectively. */ int iSongsPassed; int iSongsPlayed;