fix warning
This commit is contained in:
@@ -109,7 +109,7 @@ void SongManager::CategoryData::AddHighScore( HighScore hs, int &iIndexOut )
|
|||||||
{
|
{
|
||||||
vHighScores.insert( vHighScores.begin()+i, hs );
|
vHighScores.insert( vHighScores.begin()+i, hs );
|
||||||
iIndexOut = i;
|
iIndexOut = i;
|
||||||
if( vHighScores.size() > NUM_RANKING_LINES )
|
if( int(vHighScores.size()) > NUM_RANKING_LINES )
|
||||||
vHighScores.erase( vHighScores.begin()+NUM_RANKING_LINES, vHighScores.end() );
|
vHighScores.erase( vHighScores.begin()+NUM_RANKING_LINES, vHighScores.end() );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user