mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 15:22:15 +00:00
Fixed static handlers being OF_Fixed: only global (non-map) static handlers should be fixed.
This commit is contained in:
parent
9b3b21c735
commit
e33a320544
1 changed files with 2 additions and 2 deletions
|
@ -18,7 +18,7 @@ bool E_RegisterHandler(DStaticEventHandler* handler)
|
|||
if (handler->next)
|
||||
handler->next->prev = handler;
|
||||
E_FirstEventHandler = handler;
|
||||
if (handler->IsStatic() && handler->isMapScope) handler->ObjectFlags |= OF_Fixed;
|
||||
if (handler->IsStatic() && !handler->isMapScope) handler->ObjectFlags |= OF_Fixed;
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -35,7 +35,7 @@ bool E_UnregisterHandler(DStaticEventHandler* handler)
|
|||
handler->next->prev = handler->prev;
|
||||
if (handler == E_FirstEventHandler)
|
||||
E_FirstEventHandler = handler->next;
|
||||
if (handler->IsStatic() && handler->isMapScope)
|
||||
if (handler->IsStatic() && !handler->isMapScope)
|
||||
{
|
||||
handler->ObjectFlags |= OF_YesReallyDelete;
|
||||
delete handler;
|
||||
|
|
Loading…
Reference in a new issue