From ad178e16c5d0c97e93981a27bf64d5a8cb5fd7a4 Mon Sep 17 00:00:00 2001
From: Christoph Oelckers <coelckers@users.noreply.github.com>
Date: Mon, 13 Feb 2017 20:03:29 +0100
Subject: [PATCH] - working again.

---
 wadsrc/static/zscript/menu/optionmenuitems.txt | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/wadsrc/static/zscript/menu/optionmenuitems.txt b/wadsrc/static/zscript/menu/optionmenuitems.txt
index 398b20cb28..03aac8f613 100644
--- a/wadsrc/static/zscript/menu/optionmenuitems.txt
+++ b/wadsrc/static/zscript/menu/optionmenuitems.txt
@@ -138,7 +138,7 @@ class OptionMenuItemCommand : OptionMenuItemSubmenu
 		// don't execute if this item cannot be found in the current menu.
 		if (m.GetItem(mAction) != self) return false;
 		Menu.MenuSound("menu/choose");
-		Console.DoCommand(mAction);
+		DoCommand(mAction);
 		return true;
 	}
 
@@ -166,7 +166,7 @@ class OptionMenuItemSafeCommand : OptionMenuItemCommand
 	{
 		if (mkey == Menu.MKEY_MBYes)
 		{
-			Super.Activate(mKey, fromController);
+			Super.Activate();
 			return true;
 		}
 		return Super.MenuEvent(mkey, fromcontroller);