- working again.

This commit is contained in:
Christoph Oelckers 2017-02-13 20:03:29 +01:00
parent 7b2ec1f737
commit ad178e16c5

View file

@ -138,7 +138,7 @@ class OptionMenuItemCommand : OptionMenuItemSubmenu
// don't execute if this item cannot be found in the current menu. // don't execute if this item cannot be found in the current menu.
if (m.GetItem(mAction) != self) return false; if (m.GetItem(mAction) != self) return false;
Menu.MenuSound("menu/choose"); Menu.MenuSound("menu/choose");
Console.DoCommand(mAction); DoCommand(mAction);
return true; return true;
} }
@ -166,7 +166,7 @@ class OptionMenuItemSafeCommand : OptionMenuItemCommand
{ {
if (mkey == Menu.MKEY_MBYes) if (mkey == Menu.MKEY_MBYes)
{ {
Super.Activate(mKey, fromController); Super.Activate();
return true; return true;
} }
return Super.MenuEvent(mkey, fromcontroller); return Super.MenuEvent(mkey, fromcontroller);