diff options
author | rubidium <rubidium@openttd.org> | 2008-08-31 10:50:05 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-08-31 10:50:05 +0000 |
commit | ea1f180a55f66ae02f95e63d387fa445061daa25 (patch) | |
tree | c32cbaf06fe071c31b5540a00a6a0e8317d4f1d4 /src/network | |
parent | 46e23b8f996f0e684d2447c637b10daa5abfb964 (diff) | |
download | openttd-ea1f180a55f66ae02f95e63d387fa445061daa25.tar.xz |
(svn r14199) -Codechange: split fileio.h into fileio_type.h and fileio_func.h so not everything that includes saveload.h needs to include everything else too.
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/network.cpp | 1 | ||||
-rw-r--r-- | src/network/network_client.cpp | 2 | ||||
-rw-r--r-- | src/network/network_server.cpp | 2 |
3 files changed, 2 insertions, 3 deletions
diff --git a/src/network/network.cpp b/src/network/network.cpp index dff8c220d..e2b355c6f 100644 --- a/src/network/network.cpp +++ b/src/network/network.cpp @@ -28,7 +28,6 @@ #include "../console_func.h" #include <stdarg.h> /* va_list */ #include "../md5.h" -#include "../fileio.h" #include "../texteff.hpp" #include "../core/random_func.hpp" #include "../window_func.h" diff --git a/src/network/network_client.cpp b/src/network/network_client.cpp index 4814973a1..0b07e7da0 100644 --- a/src/network/network_client.cpp +++ b/src/network/network_client.cpp @@ -18,7 +18,7 @@ #include "../variables.h" #include "../ai/ai.h" #include "../core/alloc_func.hpp" -#include "../fileio.h" +#include "../fileio_func.h" #include "../md5.h" #include "../strings_func.h" #include "../window_func.h" diff --git a/src/network/network_server.cpp b/src/network/network_server.cpp index 56f8b724e..d1e1614f6 100644 --- a/src/network/network_server.cpp +++ b/src/network/network_server.cpp @@ -22,7 +22,7 @@ #include "../variables.h" #include "../genworld.h" #include "../core/alloc_func.hpp" -#include "../fileio.h" +#include "../fileio_func.h" #include "../string_func.h" #include "../player_base.h" #include "../player_func.h" |