remove unused (dupe of fAliveSeconds)

This commit is contained in:
Glenn Maynard
2005-04-05 02:51:39 +00:00
parent 05d01855b7
commit fb5ece51fd
2 changed files with 0 additions and 3 deletions
-2
View File
@@ -20,7 +20,6 @@ void PlayerStageStats::Init()
bFailed = bFailedEarlier = false; bFailed = bFailedEarlier = false;
iPossibleDancePoints = iActualDancePoints = 0; iPossibleDancePoints = iActualDancePoints = 0;
iCurCombo = iMaxCombo = iCurMissCombo = iScore = iBonus = iMaxScore = iCurMaxScore = 0; iCurCombo = iMaxCombo = iCurMissCombo = iScore = iBonus = iMaxScore = iCurMaxScore = 0;
fSecondsBeforeFail = 0;
iSongsPassed = iSongsPlayed = 0; iSongsPassed = iSongsPlayed = 0;
iTotalError = 0; iTotalError = 0;
fCaloriesBurned = 0; fCaloriesBurned = 0;
@@ -56,7 +55,6 @@ void PlayerStageStats::AddStats( const PlayerStageStats& other )
iCurMaxScore += other.iCurMaxScore; iCurMaxScore += other.iCurMaxScore;
radarPossible += other.radarPossible; radarPossible += other.radarPossible;
radarActual += other.radarActual; radarActual += other.radarActual;
fSecondsBeforeFail += other.fSecondsBeforeFail;
iSongsPassed += other.iSongsPassed; iSongsPassed += other.iSongsPassed;
iSongsPlayed += other.iSongsPlayed; iSongsPlayed += other.iSongsPlayed;
iTotalError += other.iTotalError; iTotalError += other.iTotalError;
-1
View File
@@ -44,7 +44,6 @@ struct PlayerStageStats
int iBonus; // bonus to be added on screeneval int iBonus; // bonus to be added on screeneval
RadarValues radarPossible; // filled in by ScreenGameplay on start of notes RadarValues radarPossible; // filled in by ScreenGameplay on start of notes
RadarValues radarActual; RadarValues radarActual;
float fSecondsBeforeFail; // -1 means didn't/hasn't failed
/* The number of songs played and passed, respectively. */ /* The number of songs played and passed, respectively. */
int iSongsPassed; int iSongsPassed;
int iSongsPlayed; int iSongsPlayed;