From 5fd6ccb97086d62e350eab63892240e006675035 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 16 Feb 2016 20:53:52 +0100 Subject: [PATCH 1/2] - fixed incorrect #include. --- src/r_utility.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/r_utility.cpp b/src/r_utility.cpp index bcba624e1..4f575910c 100644 --- a/src/r_utility.cpp +++ b/src/r_utility.cpp @@ -34,7 +34,7 @@ #include "doomstat.h" #include "m_random.h" #include "m_bbox.h" -#include "p_local.h" +#include "portal.h" #include "r_sky.h" #include "st_stuff.h" #include "c_cvars.h" From 6d8879f3028fbd59adde75e8d5fc269da29d4902 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 16 Feb 2016 22:00:48 +0100 Subject: [PATCH 2/2] - missing #includes. --- src/g_strife/a_strifestuff.cpp | 1 + src/r_utility.cpp | 1 + 2 files changed, 2 insertions(+) diff --git a/src/g_strife/a_strifestuff.cpp b/src/g_strife/a_strifestuff.cpp index 724deaee2..1c1d5311d 100644 --- a/src/g_strife/a_strifestuff.cpp +++ b/src/g_strife/a_strifestuff.cpp @@ -20,6 +20,7 @@ #include "v_font.h" #include "farchive.h" #include "p_spec.h" +#include "portal.h" // Include all the other Strife stuff here to reduce compile time #include "a_acolyte.cpp" diff --git a/src/r_utility.cpp b/src/r_utility.cpp index 4f575910c..45760a5ce 100644 --- a/src/r_utility.cpp +++ b/src/r_utility.cpp @@ -57,6 +57,7 @@ #include "farchive.h" #include "r_utility.h" #include "d_player.h" +#include "portal.h" // EXTERNAL DATA DECLARATIONS ----------------------------------------------