From cea2c3490a04d9b774fb5da658fb406f26c0f3db Mon Sep 17 00:00:00 2001 From: peter1138 Date: Tue, 28 Oct 2014 11:32:19 +0000 Subject: (svn r27049) -Fix (r26482): Fix compilation with --enable-desync-debug. --- src/core/random_func.cpp | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'src') diff --git a/src/core/random_func.cpp b/src/core/random_func.cpp index 5c1d07940..e4593c407 100644 --- a/src/core/random_func.cpp +++ b/src/core/random_func.cpp @@ -13,6 +13,15 @@ #include "random_func.hpp" #include "bitmath_func.hpp" +#ifdef RANDOM_DEBUG +#include "../network/network.h" +#include "../network/network_server.h" +#include "../network/network_internal.h" +#include "../company_func.h" +#include "../fileio_func.h" +#include "../date_func.h" +#endif /* RANDOM_DEBUG */ + #include "../safeguards.h" Randomizer _random, _interactive_random; @@ -62,13 +71,6 @@ void SetRandomSeed(uint32 seed) } #ifdef RANDOM_DEBUG -#include "../network/network.h" -#include "../network/network_server.h" -#include "../network/network_internal.h" -#include "../company_func.h" -#include "../fileio_func.h" -#include "../date_func.h" - uint32 DoRandom(int line, const char *file) { if (_networking && (!_network_server || (NetworkClientSocket::IsValidID(0) && NetworkClientSocket::Get(0)->status != NetworkClientSocket::STATUS_INACTIVE))) { -- cgit v1.2.3-54-g00ecf