mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 14:52:01 +00:00
- fixed: parent-less confirmation screens did not process any input.
This commit is contained in:
parent
5d4514060b
commit
1d468190a6
1 changed files with 15 additions and 18 deletions
|
@ -142,27 +142,24 @@ void DMessageBoxMenu::CloseSound()
|
||||||
|
|
||||||
void DMessageBoxMenu::HandleResult(bool res)
|
void DMessageBoxMenu::HandleResult(bool res)
|
||||||
{
|
{
|
||||||
if (mParentMenu != NULL)
|
if (mMessageMode == 0)
|
||||||
{
|
{
|
||||||
if (mMessageMode == 0)
|
if (mActionFunc)
|
||||||
{
|
{
|
||||||
if (mActionFunc)
|
mActionFunc(res);
|
||||||
{
|
Close();
|
||||||
mActionFunc(res);
|
|
||||||
Close();
|
|
||||||
}
|
|
||||||
else if (mAction == NAME_None)
|
|
||||||
{
|
|
||||||
mParentMenu->MenuEvent(res? MKEY_MBYes : MKEY_MBNo, false);
|
|
||||||
Close();
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
Close();
|
|
||||||
if (res) M_SetMenu(mAction, -1);
|
|
||||||
}
|
|
||||||
CloseSound();
|
|
||||||
}
|
}
|
||||||
|
else if (mAction == NAME_None && mParentMenu)
|
||||||
|
{
|
||||||
|
mParentMenu->MenuEvent(res ? MKEY_MBYes : MKEY_MBNo, false);
|
||||||
|
Close();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
Close();
|
||||||
|
if (res) M_SetMenu(mAction, -1);
|
||||||
|
}
|
||||||
|
CloseSound();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue