Without access to the full game, trying to back out of the Goner Setup/Tutorial will give you a quit prompt instead

This commit is contained in:
toaster 2023-11-30 00:11:37 +00:00
parent 0f687be7b5
commit 4c284680ff
2 changed files with 25 additions and 1 deletions

View file

@ -27,6 +27,8 @@ menuitem_t MAIN_Goner[] =
{.routine = M_GonerTutorial}, 0, 0},
};
static boolean M_GonerInputs(INT32 ch);
menu_t MAIN_GonerDef = {
sizeof (MAIN_Goner) / sizeof (menuitem_t),
NULL,
@ -41,7 +43,7 @@ menu_t MAIN_GonerDef = {
M_GonerTick,
NULL,
NULL,
NULL,
M_GonerInputs,
};
void M_GonerTick(void)
@ -109,3 +111,18 @@ void M_GonerTutorial(INT32 choice)
&M_QuitResponse, MM_YESNO, "I agree", "Cancel");
}
}
static boolean M_GonerInputs(INT32 ch)
{
const UINT8 pid = 0;
(void)ch;
if (M_MenuBackPressed(pid))
{
// No returning to the title screen.
M_QuitSRB2(-1);
return true;
}
return false;
}

View file

@ -499,5 +499,12 @@ void M_EndGame(INT32 choice)
if (!Playing())
return;
if (M_GameTrulyStarted() == false)
{
// No returning to the title screen.
M_QuitSRB2(-1);
return;
}
M_StartMessage("Return to Menu", M_GetText("Are you sure you want to\nreturn to the menu?\n"), &M_ExitGameResponse, MM_YESNO, NULL, NULL);
}