commit f28f2b6eb4017e8ed4776fd85428124612e3c5d9
Author: Turo Lamminen <turol@iki.fi>
AuthorDate: Tue Sep 13 18:44:41 2022 +0300
Commit: Turo Lamminen <turol@iki.fi>
CommitDate: Fri Oct 7 13:14:28 2022 +0300
hexen: Move artiskip extern declaration to h2def.h
---
src/hexen/g_game.c | 2 --
src/hexen/h2def.h | 3 +++
2 files changed, 3 insertions(+), 2 deletions(-)
diff --git a/src/hexen/g_game.c b/src/hexen/g_game.c
index 72da44a7..02054b24 100644
--- a/src/hexen/g_game.c
+++ b/src/hexen/g_game.c
@@ -203,8 +203,6 @@ void G_BuildTiccmd(ticcmd_t *cmd, int maketic)
int flyheight;
int pClass;
- extern boolean artiskip;
-
// haleyjd: removed externdriver crap
pClass = players[consoleplayer].class;
diff --git a/src/hexen/h2def.h b/src/hexen/h2def.h
index 0b556b1c..c05d2d05 100644
--- a/src/hexen/h2def.h
+++ b/src/hexen/h2def.h
@@ -719,6 +719,9 @@ void H2_GameLoop(void);
// calls all ?_Responder, ?_Ticker, and ?_Drawer functions
// calls I_GetTime, I_StartFrame, and I_StartTic
+extern boolean artiskip;
+
+
//---------
//SYSTEM IO
//---------