Revert "Fix #4610"

This reverts commit 789885c546bd9d5eebbd3e67dd174bedbc1f41b8.
This commit is contained in:
Benau 2021-09-22 09:09:28 +08:00
parent dab4486465
commit 9b05ac6252

View File

@ -1229,14 +1229,8 @@ void RaceResultGUI::unload()
}
// Display highscores
if (RaceManager::get()->getMajorMode() == RaceManager::MAJOR_MODE_GRAND_PRIX)
{
// After determineGPLayout the GP ranking in race manager is correct
if (m_animation_state >= RR_OLD_GP_RESULTS &&
m_animation_state <= RR_WAIT_TILL_END)
displayPostRaceInfo();
}
else if (m_animation_state >= RR_RACE_RESULT)
if (RaceManager::get()->getMajorMode() != RaceManager::MAJOR_MODE_GRAND_PRIX ||
m_animation_state == RR_RACE_RESULT)
{
displayPostRaceInfo();
}