mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-15 20:20:54 +00:00
- fixed destroyit.
This caused parts of the exploding house in RRRA E1L5 not to disappear.
This commit is contained in:
parent
6729859e39
commit
60263ccad9
1 changed files with 1 additions and 1 deletions
|
@ -4213,7 +4213,7 @@ void destroyit(DDukeActor *actor)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
it1.Reset(actor->s.sectnum);
|
it1.Reset(actor->s.sectnum);
|
||||||
while (auto a2 = it.Next())
|
while (auto a2 = it1.Next())
|
||||||
{
|
{
|
||||||
switch (a2->s.picnum)
|
switch (a2->s.picnum)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue