Menus: press C to reset text box options to default

This commit is contained in:
James R 2023-12-29 18:14:47 -08:00
parent 700df854dc
commit 41155fd81b

View file

@ -980,6 +980,15 @@ static void M_HandleMenuInput(void)
M_OpenVirtualKeyboard(thisMenuKey == -1); // If we entered this menu by pressing a menu Key, default to keyboard typing, otherwise use controller.
return;
}
else if (M_MenuExtraPressed(pid))
{
if (!(currentMenu->behaviourflags & MBF_SOUNDLESS))
S_StartSound(NULL, sfx_s3k5b);
M_ChangeCvar(-1);
M_SetMenuDelay(pid);
return;
}
}
else