From ca11e07f950db955d361475d1479167beb234802 Mon Sep 17 00:00:00 2001 From: SinnamonLat Date: Sat, 26 Feb 2022 10:56:16 +0100 Subject: [PATCH] Fix the profile closing if you back out from the profile charsel --- src/k_menufunc.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/k_menufunc.c b/src/k_menufunc.c index 4204df463..0f0934cc1 100644 --- a/src/k_menufunc.c +++ b/src/k_menufunc.c @@ -2366,6 +2366,7 @@ static boolean M_HandleCharacterGrid(setup_player_t *p, UINT8 num) if (optionsmenu.profile) { memset(setup_player, 0, sizeof(setup_player)); // Reset setup_player otherwise it does some VERY funky things. + M_SetMenuDelay(0); M_GoBack(0); return true; }