only save life and combo for the range of time between the first and last step

This commit is contained in:
Chris Danford
2005-04-23 02:50:26 +00:00
parent 9fbfabea76
commit d5b7e5650c
10 changed files with 36 additions and 28 deletions
+1 -1
View File
@@ -180,7 +180,7 @@ void LifeMeterTime::ForceFail()
float LifeMeterTime::GetLifeSeconds() const
{
float fSecs = m_fLifeTotalGainedSeconds - (m_fLifeTotalLostSeconds + STATSMAN->m_CurStageStats.fGameplaySeconds);
float fSecs = m_fLifeTotalGainedSeconds - (m_fLifeTotalLostSeconds + STATSMAN->m_CurStageStats.fStepsSeconds);
return fSecs;
}