From 18bd2e4d071d771850d389c3f553d923e1482f26 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Sat, 11 Dec 2021 13:53:10 +1100 Subject: [PATCH] - 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. --- source/games/sw/src/sprite.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/games/sw/src/sprite.cpp b/source/games/sw/src/sprite.cpp index f1d49c564..894c71a30 100644 --- a/source/games/sw/src/sprite.cpp +++ b/source/games/sw/src/sprite.cpp @@ -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;