- SW: Destroy actor in KillActor() after clearing the pointed to sprite, not before it.

* No idea if it matters but it seems logical that this is how it should be.
This commit is contained in:
Mitchell Richters 2021-12-11 13:53:10 +11:00 committed by Christoph Oelckers
parent 65a55d3589
commit 18bd2e4d07

View file

@ -770,9 +770,9 @@ void KillActor(DSWActor* actor)
FVector3 pos = GetSoundPos(&actor->s().pos);
soundEngine->RelinkSound(SOURCE_Actor, &actor->s(), nullptr, &pos);
actor->Destroy();
// shred your garbage
sp->clear();
actor->Destroy();
// Kill references in all users - slow but unavoidable if we don't want the game to crash on stale pointers.
SWSpriteIterator it;