remove unused (dupe of fAliveSeconds)
This commit is contained in:
@@ -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;
|
||||||
|
|||||||
@@ -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;
|
||||||
|
|||||||
Reference in New Issue
Block a user