From 2d4c986550a5730d591955a8c0fb8e0a897bc3a0 Mon Sep 17 00:00:00 2001 From: drjaska Date: Sun, 7 Mar 2021 05:46:38 +0200 Subject: [PATCH] Fixed file include stuff which was needed due to alphabetical compiling order. --- qcsrc/common/gamemodes/gamemode/mayhem/mayhem.qh | 2 ++ qcsrc/common/gamemodes/gamemode/tmayhem/tmayhem.qh | 1 + 2 files changed, 3 insertions(+) diff --git a/qcsrc/common/gamemodes/gamemode/mayhem/mayhem.qh b/qcsrc/common/gamemodes/gamemode/mayhem/mayhem.qh index 6f9dd4a2f..bf5568b84 100644 --- a/qcsrc/common/gamemodes/gamemode/mayhem/mayhem.qh +++ b/qcsrc/common/gamemodes/gamemode/mayhem/mayhem.qh @@ -1,5 +1,7 @@ #pragma once +#include +#include #include CLASS(mayhem, Gametype) diff --git a/qcsrc/common/gamemodes/gamemode/tmayhem/tmayhem.qh b/qcsrc/common/gamemodes/gamemode/tmayhem/tmayhem.qh index 01a808df7..290881c9c 100644 --- a/qcsrc/common/gamemodes/gamemode/tmayhem/tmayhem.qh +++ b/qcsrc/common/gamemodes/gamemode/tmayhem/tmayhem.qh @@ -1,6 +1,7 @@ #pragma once #include +#include #include CLASS(tmayhem, Gametype) -- 2.39.2