1
0
mirror of https://github.com/td512/re3.git synced 2026-03-08 05:59:18 +00:00

Merge pull request #689 from jack9267/master

Call CWorld::Remove before the delete
This commit is contained in:
Nikolay Korolev
2020-08-18 18:06:04 +03:00
committed by GitHub

View File

@@ -117,8 +117,7 @@ CPopulation::Initialise()
void
CPopulation::RemovePed(CPed *ent)
{
// CPed dtor already does that
// CWorld::Remove((CEntity*)ent);
CWorld::Remove((CEntity*)ent);
delete ent;
}