File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -524,13 +524,16 @@ void HighScoreList::RemoveAllButOneOfEachName()
524524 }
525525}
526526
527+ /* commented out functionality instead of obliterating in
528+ case some of you for whatever reason want to reenable this
529+ - Mina */
527530void HighScoreList::ClampSize ( bool bIsMachine )
528531{
529532 const int iMaxScores = bIsMachine ?
530533 PREFSMAN->m_iMaxHighScoresPerListForMachine :
531534 PREFSMAN->m_iMaxHighScoresPerListForPlayer ;
532- if ( vHighScores.size () > unsigned (iMaxScores) )
533- vHighScores.erase ( vHighScores.begin ()+iMaxScores, vHighScores.end () );
535+ // if( vHighScores.size() > unsigned(iMaxScores) )
536+ // vHighScores.erase( vHighScores.begin()+iMaxScores, vHighScores.end() );
534537}
535538
536539void HighScoreList::MergeFromOtherHSL (HighScoreList& other, bool is_machine)
You can’t perform that action at this time.
0 commit comments