Skip to content

Commit

Permalink
Fixed a couple of bugs which crept in during the update. Probably the…
Browse files Browse the repository at this point in the history
… cause of the seg fault ashridah reported when trying to access the secret level from E1M01.
  • Loading branch information
danij committed Sep 13, 2006
1 parent e9f4c99 commit 921d8e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doomsday/plugins/doom64tc/src/p_enemy.c
Expand Up @@ -2924,7 +2924,7 @@ void C_DECL A_BossDeath(mobj_t *mo)
{
dummyLine = P_AllocDummyLine();
P_XLine(dummyLine)->tag = 666;
EV_DoFloor(dummyLine, blazeRaise);
EV_DoDoor(dummyLine, blazeRaise);

P_FreeDummyLine(dummyLine);
return;
Expand All @@ -2943,7 +2943,7 @@ void C_DECL A_BossDeath(mobj_t *mo)
{
dummyLine = P_AllocDummyLine();
P_XLine(dummyLine)->tag = 666;
EV_DoFloor(dummyLine, blazeRaise);
EV_DoDoor(dummyLine, blazeRaise);

P_FreeDummyLine(dummyLine);
return;
Expand Down

0 comments on commit 921d8e2

Please sign in to comment.