Always 3 karts on GP podium screen

git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/trunk@6368 178a84e3-b1eb-0310-8ba1-8eac791a3b58
This commit is contained in:
auria 2010-10-29 01:39:27 +00:00
parent 4eb096528f
commit f367170752

View File

@ -425,10 +425,7 @@ void RaceManager::exitRace()
bool someHumanPlayerWon = false;
const unsigned int kartStatusCount = m_kart_status.size();
/** The rank from which players are considered losers - you are behind half the players OR
behind the first 3 (the first condition handles cases where there are 3 karts or less).
However this rank may not be 0, since at least one player must win, hence the std::max call. */
const int loserThreshold = std::max(1, std::min(3, int(kartStatusCount)/2));
const int loserThreshold = 3;
std::string winners[3];
std::vector<std::string> humanLosers; // because we don't care about AIs that lost