From 48c454553f891b1b9897bcc4bd03e84782620870 Mon Sep 17 00:00:00 2001 From: sphere Date: Thu, 21 Nov 2019 02:19:31 +0100 Subject: [PATCH] Move SP and MP down if extras aren't unlocked yet. --- src/m_menu.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/m_menu.c b/src/m_menu.c index 4ecc41d0b..6cef107ff 100644 --- a/src/m_menu.c +++ b/src/m_menu.c @@ -488,11 +488,11 @@ static menuitem_t MainMenu[] = typedef enum { - secrets = 0, singleplr, multiplr, - options, + secrets = 2, addons, + options, quitdoom } main_e; @@ -3436,6 +3436,8 @@ void M_StartControlPanel(void) if (!Playing()) { // Secret menu! + MainMenu[singleplr].alphaKey = (M_AnySecretUnlocked()) ? 76 : 84; + MainMenu[multiplr].alphaKey = (M_AnySecretUnlocked()) ? 84 : 92; MainMenu[secrets].status = (M_AnySecretUnlocked()) ? (IT_STRING | IT_CALL) : (IT_DISABLED); currentMenu = &MainDef;