mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Fix minor edge case with error message for Eggman's Way
This commit is contained in:
parent
638eadee2e
commit
c5ab5ec71e
1 changed files with 13 additions and 0 deletions
|
|
@ -1452,7 +1452,20 @@ static void M_GonerSurveyResponse(INT32 ch)
|
|||
gamedata->gonerlevel = GDGONER_OUTRO;
|
||||
|
||||
if (currentMenu == &MAIN_GonerChoiceDef)
|
||||
{
|
||||
if (itemOn == GONERCHOICE_EGGMAN)
|
||||
{
|
||||
gamedata->playgroundroute = true;
|
||||
gamedata->gonerlevel = GDGONER_DONE;
|
||||
|
||||
F_StartIntro();
|
||||
M_ClearMenus(true);
|
||||
M_GonerResetText();
|
||||
return;
|
||||
}
|
||||
|
||||
M_GoBack(0);
|
||||
}
|
||||
}
|
||||
|
||||
static void M_GonerSurvey(INT32 choice)
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue