mirror of
https://github.com/DrBeef/Raze.git
synced 2025-04-03 22:50:47 +00:00
- 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:
parent
65a55d3589
commit
18bd2e4d07
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue