diff --git a/wadsrc/static/menudef.txt b/wadsrc/static/menudef.txt index 502484d32..248d8227c 100644 --- a/wadsrc/static/menudef.txt +++ b/wadsrc/static/menudef.txt @@ -385,8 +385,10 @@ OptionMenu "OptionsMenu" protected Option "$OPTMNU_SIMPLEON", "m_simpleoptions", "OnOff" StaticText " " - SafeCommand "$OPTMNU_DEFAULTS", "reset2defaults" + SafeCommand "$OPTMNU_DEFAULTS", "reset2defaults" SafeCommand "$OPTMNU_RESETTOSAVED", "reset2saved" + SafeCommand "$OPTMNU_WRITEINI", "writeini" + Command "$OPTMNU_CONSOLE", "menuconsole" StaticText " " } @@ -1623,7 +1625,7 @@ OptionMenu GameplayOptions protected Submenu "$GMPLYMNU_COOPERATIVE", "CoopOptions" StaticText " " Option "$GMPLYMNU_TEAMPLAY", "teamplay", "OnOff" - Slider "$GMPLYMNU_TEAMDAMAGE", "teamdamage", 0, 1, 0.05,2 + Slider "$GMPLYMNU_TEAMDAMAGE", "teamdamage", 0, 1, 0.05,2 StaticText " " Option "$GMPLYMNU_SMARTAUTOAIM", "sv_smartaim", "SmartAim" StaticText " " @@ -1654,6 +1656,7 @@ OptionMenu GameplayOptions protected Option "$GMPLYMNU_DONTCHECKAMMO", "sv_dontcheckammo", "NoYes" Option "$GMPLYMNU_KILLBOSSSPAWNS", "sv_killbossmonst", "YesNo" Option "$GMPLYMNU_NOCOUNTENDMONSTER", "sv_nocountendmonst", "NoYes" + Option "$GMPLYMNU_ALWAYSSPAWNMULTI", "sv_alwaysspawnmulti", "YesNo" Class "GameplayMenu" } diff --git a/wadsrc/static/menudef.zsimple b/wadsrc/static/menudef.zsimple index 5a5c17b3a..72aa042e2 100644 --- a/wadsrc/static/menudef.zsimple +++ b/wadsrc/static/menudef.zsimple @@ -1,6 +1,6 @@ // this file has the simplified menu here. // this file is *only* for options that are relevant to a novice user of GZDoom -// this file needs to be regularly pruned, with options coalesced as much as possible. any and all verbosity should go to the classic menus. +// this file needs to be regularly pruned, with options coalesced as much as possible. any and all verbosity should go to the "full" menus. OptionMenu "OptionsMenuSimple" protected { @@ -19,8 +19,9 @@ OptionMenu "OptionsMenuSimple" protected StaticText " " Submenu "$OPTMNU_FULLOPTIONS", "OptionsMenuFull" StaticText " " - SafeCommand "$OPTMNU_DEFAULTS", "reset2defaults" + SafeCommand "$OPTMNU_DEFAULTS", "reset2defaults" SafeCommand "$OPTMNU_RESETTOSAVED", "reset2saved" + SafeCommand "$OPTMNU_WRITEINI", "writeini" Command "$OPTMNU_CONSOLE", "menuconsole" StaticText " " }