commit 3c30844a36ed08163fe3408733acaa8dd801147c
Author: Turo Lamminen <turol@iki.fi>
AuthorDate: Wed Sep 7 14:56:58 2022 +0300
Commit: Turo Lamminen <turol@iki.fi>
CommitDate: Thu Nov 3 10:13:12 2022 +0200
doom: Move inhelpscreens extern declaration to m_menu.h
---
src/doom/d_main.c | 1 -
src/doom/m_menu.h | 1 +
2 files changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/doom/d_main.c b/src/doom/d_main.c
index 1429e8aa..a2b22228 100644
--- a/src/doom/d_main.c
+++ b/src/doom/d_main.c
@@ -105,7 +105,6 @@ boolean respawnparm; // checkparm of -respawn
boolean fastparm; // checkparm of -fast
-extern boolean inhelpscreens;
skill_t startskill;
int startepisode;
diff --git a/src/doom/m_menu.h b/src/doom/m_menu.h
index ce41db39..e61bed9d 100644
--- a/src/doom/m_menu.h
+++ b/src/doom/m_menu.h
@@ -56,6 +56,7 @@ void M_StartControlPanel (void);
extern int detailLevel;
extern int screenblocks;
+extern boolean inhelpscreens;
#endif