Fix wrong names

This commit is contained in:
Sally Coolatta 2022-10-10 06:10:38 -04:00
parent 21dd68d392
commit 3f94c6def8
2 changed files with 2 additions and 2 deletions

View file

@ -5893,7 +5893,7 @@ static void P_ConvertBinarySectorTypes(void)
CONS_Alert(CONS_WARNING, "Sneaker Panel special is deprecated. Use the TERRAIN effect!\n"); CONS_Alert(CONS_WARNING, "Sneaker Panel special is deprecated. Use the TERRAIN effect!\n");
break; break;
case 7: //Destroy items case 7: //Destroy items
sectors[i].specialflags |= SSF_DESTROYITEMS; sectors[i].specialflags |= SSF_DELETEITEMS;
break; break;
case 8: //Zoom tube start case 8: //Zoom tube start
sectors[i].specialflags |= SSF_ZOOMTUBESTART; sectors[i].specialflags |= SSF_ZOOMTUBESTART;

View file

@ -4461,7 +4461,7 @@ static void P_ProcessExitSector(player_t *player, mtag_t sectag)
#endif #endif
// Exit (for FOF exits; others are handled in P_PlayerThink in p_user.c) // Exit (for FOF exits; others are handled in P_PlayerThink in p_user.c)
P_DoPlayerFinish(player); P_DoPlayerExit(player);
P_SetupSignExit(player); P_SetupSignExit(player);