1From a8fd4b1f563d24d4296c3e8225c8404e2724d4c2 Mon Sep 17 00:00:00 2001
2From: Jordan Christiansen <xordspar0@gmail.com>
3Date: Sun, 15 Mar 2020 16:55:33 -0500
4Subject: [PATCH] Remove redundant demoextend definition
5
6GCC 10 enables -fno-common by default, which causes the linker to fail when
7there are multple definitions of a global variable.
8
9See https://gcc.gnu.org/gcc-10/porting_to.html
10
11[Retrieved from:
12https://github.com/chocolate-doom/chocolate-doom/commit/a8fd4b1f563d24d4296c3e8225c8404e2724d4c2]
13Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
14---
15 src/hexen/mn_menu.c | 1 -
16 1 file changed, 1 deletion(-)
17
18diff --git a/src/hexen/mn_menu.c b/src/hexen/mn_menu.c
19index 059f45b3e..a97b7fcd1 100644
20--- a/src/hexen/mn_menu.c
21+++ b/src/hexen/mn_menu.c
22@@ -131,7 +131,6 @@ boolean MenuActive;
23 int InfoType;
24 int messageson = true;
25 boolean mn_SuicideConsole;
26-boolean demoextend; // from h2def.h
27
28 // PRIVATE DATA DEFINITIONS ------------------------------------------------
29
30