mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-10 06:42:12 +00:00
Fixed a bug where static events would fail to halt propagation.
Signed-off-by: CandiceJoy <candice@candicejoy.com>
This commit is contained in:
parent
81e7d77b44
commit
955a841884
1 changed files with 1 additions and 1 deletions
|
@ -511,7 +511,7 @@ bool EventManager::Responder(const event_t* ev)
|
|||
return true; // event was processed
|
||||
}
|
||||
}
|
||||
if (ShouldCallStatic(false)) uiProcessorsFound = staticEventManager.Responder(ev);
|
||||
if (ShouldCallStatic(false) && staticEventManager.Responder(ev)) return true;
|
||||
|
||||
return false;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue