s/m_vPassedStageStats/m_vPlayedStageStats/g

This commit is contained in:
Glenn Maynard
2003-09-06 01:37:30 +00:00
parent 5ef82e798b
commit c7358e2cf9
3 changed files with 5 additions and 5 deletions
+3 -3
View File
@@ -92,7 +92,7 @@ void GameState::Reset()
ResetStageStatistics();
SONGMAN->UpdateBest();
m_vPassedStageStats.clear();
m_vPlayedStageStats.clear();
for( p=0; p<NUM_PLAYERS; p++ )
{
@@ -447,9 +447,9 @@ void GameState::GetFinalEvalStatsAndSongs( StageStats& statsOut, vector<Song*>&
// Show stats only for the latest 3 normal songs + passed extra stages
int PassedRegularSongsLeft = 3;
for( int i = (int)GAMESTATE->m_vPassedStageStats.size()-1; i >= 0; --i )
for( int i = (int)GAMESTATE->m_vPlayedStageStats.size()-1; i >= 0; --i )
{
const StageStats &s = GAMESTATE->m_vPassedStageStats[i];
const StageStats &s = GAMESTATE->m_vPlayedStageStats[i];
if( !s.OnePassed() )
continue;