foxygit / doom Log in
commit 007578b98a5915c528730a7cfdaef7d8780523d8
Author:     Turo Lamminen <turol@iki.fi>
AuthorDate: Tue Sep 13 20:25:01 2022 +0300
Commit:     Turo Lamminen <turol@iki.fi>
CommitDate: Wed Sep 28 11:13:50 2022 +0300

    strife: Move inhelpscreens extern declaration to m_menu.h
---
 src/strife/d_main.c | 2 --
 src/strife/m_menu.h | 3 +++
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/src/strife/d_main.c b/src/strife/d_main.c
index fd030bd1..fff711b9 100644
--- a/src/strife/d_main.c
+++ b/src/strife/d_main.c
@@ -114,8 +114,6 @@ boolean         randomparm;     // [STRIFE] haleyjd 20130915: checkparm of -rand
 boolean         showintro = true;   // [STRIFE] checkparm of -nograph, disables intro


-extern  boolean	inhelpscreens;
-
 skill_t		startskill;
 int             startepisode;
 int		startmap;
diff --git a/src/strife/m_menu.h b/src/strife/m_menu.h
index 08ca8f9c..08ad1a24 100644
--- a/src/strife/m_menu.h
+++ b/src/strife/m_menu.h
@@ -98,4 +98,7 @@ void M_LoadSelect(int choice);
 extern int detailLevel;
 extern int screenblocks;

+extern  boolean	inhelpscreens;
+
+
 #endif