diff options
author | rubidium <rubidium@openttd.org> | 2008-04-13 19:25:14 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2008-04-13 19:25:14 +0000 |
commit | 8ab49198b9a5285cb5676943fe66a997d2130bc3 (patch) | |
tree | 62fb23e679baa7d7fef852eba8960e2a582d1f52 /src/pathfind.cpp | |
parent | 1fe1b5da80e4dca34141111b84cf989dcb226a79 (diff) | |
download | openttd-8ab49198b9a5285cb5676943fe66a997d2130bc3.tar.xz |
(svn r12695) -Codechange: only allocate window structs when needed. Based on a patch by Alberth.
Diffstat (limited to 'src/pathfind.cpp')
-rw-r--r-- | src/pathfind.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pathfind.cpp b/src/pathfind.cpp index e16836b17..89435aa39 100644 --- a/src/pathfind.cpp +++ b/src/pathfind.cpp @@ -17,7 +17,7 @@ #include "depot.h" #include "tunnelbridge_map.h" #include "core/random_func.hpp" -#include "core/alloc_func.hpp" +#include "core/alloc_type.hpp" #include "tunnelbridge.h" /* remember which tiles we have already visited so we don't visit them again. */ |