From 38811b2e4c827fafc2c8e56ec92f9540a2f3dbe3 Mon Sep 17 00:00:00 2001 From: James R Date: Thu, 7 Mar 2024 09:09:12 -0800 Subject: [PATCH] Menus/Host: fix Gameplay Options and Server Options showing wrong header - Previously could say VIDEO OPTIONS etc in those menus, when accessed from Host menu shortcut --- src/menus/options-1.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/menus/options-1.c b/src/menus/options-1.c index 34d91e4e1..d11f3f709 100644 --- a/src/menus/options-1.c +++ b/src/menus/options-1.c @@ -237,12 +237,14 @@ void M_GameplayOptions(INT32 choice) { (void)choice; M_OptionsMenuGoto(&OPTIONS_GameplayDef); + OPTIONS_MainDef.lastOn = mopt_gameplay; } void M_ServerOptions(INT32 choice) { (void)choice; M_OptionsMenuGoto(&OPTIONS_ServerDef); + OPTIONS_MainDef.lastOn = mopt_server; } boolean M_OptionsInputs(INT32 ch)