mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-13 07:57:58 +00:00
- working again.
This commit is contained in:
parent
7b2ec1f737
commit
ad178e16c5
1 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue