commit 64092431a97c9a32332a56e8d0819dedbaa5f1d9
Author: Turo Lamminen <turol@iki.fi>
AuthorDate: Tue Sep 13 19:56:11 2022 +0300
Commit: Turo Lamminen <turol@iki.fi>
CommitDate: Mon Oct 3 12:52:15 2022 +0300
hexen: Move P_ExplodeMissile prototype to p_local.h
---
src/hexen/p_local.h | 1 +
src/hexen/p_pspr.c | 1 -
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/hexen/p_local.h b/src/hexen/p_local.h
index f3905010..7f9bf80b 100644
--- a/src/hexen/p_local.h
+++ b/src/hexen/p_local.h
@@ -174,6 +174,7 @@ void P_CreateTIDList(void);
void P_RemoveMobjFromTIDList(mobj_t * mobj);
void P_InsertMobjIntoTIDList(mobj_t * mobj, int tid);
mobj_t *P_FindMobjFromTID(int tid, int *searchPosition);
+void P_ExplodeMissile(mobj_t *mo);
mobj_t *P_SpawnKoraxMissile(fixed_t x, fixed_t y, fixed_t z,
mobj_t * source, mobj_t * dest, mobjtype_t type);
diff --git a/src/hexen/p_pspr.c b/src/hexen/p_pspr.c
index 30eb9da1..5f349915 100644
--- a/src/hexen/p_pspr.c
+++ b/src/hexen/p_pspr.c
@@ -33,7 +33,6 @@
// EXTERNAL FUNCTION PROTOTYPES --------------------------------------------
-extern void P_ExplodeMissile(mobj_t * mo);
extern void A_UnHideThing(mobj_t * actor);
// PUBLIC FUNCTION PROTOTYPES ----------------------------------------------