diff options
author | rubidium <rubidium@openttd.org> | 2007-12-15 22:05:02 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-12-15 22:05:02 +0000 |
commit | ad218166ec4d92c01ec46d0e89aa34c0367efac3 (patch) | |
tree | 3dcc6723173d7aeb4a0b1f5b6bf192fb889ab64d | |
parent | f13a60b90cd01c53611c43ac248660f32927417b (diff) | |
download | openttd-ad218166ec4d92c01ec46d0e89aa34c0367efac3.tar.xz |
(svn r11640) -Fix: missed change of include when moving stuff to random_func.cpp
-rw-r--r-- | src/core/random_func.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/random_func.cpp b/src/core/random_func.cpp index ff00fd604..7e2f7fbf9 100644 --- a/src/core/random_func.cpp +++ b/src/core/random_func.cpp @@ -125,7 +125,7 @@ void SetRandomSeed(uint32 seed) } #ifdef RANDOM_DEBUG -#include "network/network_data.h" +#include "../network/network_data.h" uint32 DoRandom(int line, const char *file) { if (_networking && (DEREF_CLIENT(0)->status != STATUS_INACTIVE || !_network_server)) |