foxygit / doom Log in
commit ebfd3b52f1b3444e9f53959c958aca13e50abfe9
Author:     Turo Lamminen <turol@iki.fi>
AuthorDate: Tue Sep 13 19:57:49 2022 +0300
Commit:     Turo Lamminen <turol@iki.fi>
CommitDate: Mon Oct 3 12:52:15 2022 +0300

    hexen: Move A_UnHideThing prototype to p_local.h
---
 src/hexen/p_local.h | 2 ++
 src/hexen/p_pspr.c  | 1 -
 2 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/hexen/p_local.h b/src/hexen/p_local.h
index 7f9bf80b..d34838b7 100644
--- a/src/hexen/p_local.h
+++ b/src/hexen/p_local.h
@@ -328,6 +328,8 @@ void AM_Drawer(void);
 boolean A_LocalQuake(byte * args, mobj_t * victim);
 void P_SpawnDirt(mobj_t * actor, fixed_t radius);
 void A_BridgeRemove(mobj_t * actor);
+void A_UnHideThing(mobj_t *actor);
+

 // ***** SB_BAR *****

diff --git a/src/hexen/p_pspr.c b/src/hexen/p_pspr.c
index 5f349915..b183fd8b 100644
--- a/src/hexen/p_pspr.c
+++ b/src/hexen/p_pspr.c
@@ -33,7 +33,6 @@

 // EXTERNAL FUNCTION PROTOTYPES --------------------------------------------

-extern void A_UnHideThing(mobj_t * actor);

 // PUBLIC FUNCTION PROTOTYPES ----------------------------------------------