Merge branch 'polyobjthinkref' into 'next'

Fix polyobject thinker leak

See merge request KartKrew/Kart-Public!361
This commit is contained in:
Alu Folie 2024-11-27 19:21:06 +00:00
commit d49e57e7d8

View file

@ -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
}
//