diff --git a/src/m_menu.c b/src/m_menu.c index 004fd6d00..f8e9ed333 100644 --- a/src/m_menu.c +++ b/src/m_menu.c @@ -1924,12 +1924,8 @@ void M_EnterMenu(menutype_t menunum, boolean callexit, INT32 arg) } if (menustack[0] == MN_NONE) - { - // whoops, M_ClearMenus got called, our stack is gone! - // no big deal, just put our menunum back... - CONS_Alert(CONS_WARNING, "Enter routine cleared the menu stack!\n"); - menustack[0] = menunum; - } + menustack[0] = menunum; // M_ClearMenus got called, put it back on the stack + M_SetupNextMenu(menunum, callexit); }