s/RemoteAt/erase/

This commit is contained in:
Glenn Maynard
2002-10-31 04:11:08 +00:00
parent 6e0c622850
commit a041b7cd3e
14 changed files with 39 additions and 23 deletions
+1 -1
View File
@@ -218,7 +218,7 @@ ScreenEvaluation::ScreenEvaluation( bool bSummary )
for( int p=0; p<NUM_PLAYERS; p++ )
{
if( GAMESTATE->m_apSongsPlayed.size() > STAGES_TO_SHOW_IN_SUMMARY )
GAMESTATE->m_apSongsPlayed.RemoveAt( 0, GAMESTATE->m_apSongsPlayed.size() - STAGES_TO_SHOW_IN_SUMMARY );
GAMESTATE->m_apSongsPlayed.erase( GAMESTATE->m_apSongsPlayed.begin(), GAMESTATE->m_apSongsPlayed.begin() + (GAMESTATE->m_apSongsPlayed.size() - STAGES_TO_SHOW_IN_SUMMARY) );
}
const unsigned iSongsToShow = GAMESTATE->m_apSongsPlayed.size();