remove debugging

This commit is contained in:
Glenn Maynard
2004-04-26 00:06:42 +00:00
parent fe9459b29e
commit 84e873bb28
3 changed files with 2 additions and 9 deletions
+1 -3
View File
@@ -115,19 +115,17 @@ void HighScoreList::AddHighScore( HighScore hs, int &iIndexOut )
vHighScores.erase( vHighScores.begin()+iMaxScores, vHighScores.end() );
}
}
#include "RageLog.h"
const HighScore& HighScoreList::GetTopScore() const
{
if( vHighScores.empty() )
{
LOG->Trace("empty");
static HighScore hs;
hs = HighScore();
return hs;
}
else
{
LOG->Trace("not empty");
return vHighScores[0];
}
}