mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2025-04-03 17:01:19 +00:00
Merge branch 'polyobjthinkref' into 'next'
Fix polyobject thinker leak See merge request KartKrew/Kart-Public!361
This commit is contained in:
commit
d49e57e7d8
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