fix compilation failure due to merging
This commit is contained in:
parent
b7b116634d
commit
6bf1a33ddc
@ -847,14 +847,14 @@ int handleCmdLine()
|
||||
if(CommandLine::has("--gp", &s))
|
||||
{
|
||||
race_manager->setMajorMode(RaceManager::MAJOR_MODE_GRAND_PRIX);
|
||||
const GrandPrixData *gp = grand_prix_manager->getGrandPrix(s);
|
||||
GrandPrixData *gp = grand_prix_manager->getGrandPrix(s);
|
||||
|
||||
if (!gp)
|
||||
{
|
||||
Log::warn("main", "There is no GP named '%s'.", s.c_str());
|
||||
return 0;
|
||||
}
|
||||
race_manager->setGrandPrix(*gp);
|
||||
race_manager->setGrandPrix(gp);
|
||||
} // --gp
|
||||
|
||||
if(CommandLine::has("--numkarts", &n) ||CommandLine::has("-k", &n))
|
||||
|
Loading…
Reference in New Issue
Block a user