mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-04-03 17:01:19 +00:00
init polyobject thinker references to 0
otherwise its uncertain and very unlikely for them to be removed P_RemoveThinker(Delayed) checks if thinkers are still referenced before removal. polyobject thinkers never initialised the reference count but called thinker removal, this lead to checking unitialised values and those thinkers getting stuck in removal limbo without ever being actually removed
This commit is contained in:
parent
ea49b16a02
commit
18e46448de
1 changed files with 2 additions and 0 deletions
|
@ -150,6 +150,8 @@ FUNCINLINE static ATTRINLINE void PolyObj_AddThinker(thinker_t *th)
|
|||
th->next = thinkercap.next;
|
||||
th->prev = &thinkercap;
|
||||
thinkercap.next = th;
|
||||
|
||||
th->references = 0; // init to 0 so they can be properly removed
|
||||
}
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue