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
@@ -1346,7 +1346,7 @@ void GameManager::GetNoteSkinNames( Game game, CStringArray &AddTo ) const
// strip out "CVS"
for( int i=AddTo.size()-1; i>=0; i-- )
if( 0 == stricmp("cvs", AddTo[i]) )
AddTo.RemoveAt( i );
AddTo.erase( AddTo.begin()+i, AddTo.begin()+i+1 );
}
void GameManager::GetNoteSkinNames( CStringArray &AddTo ) const