summaryrefslogtreecommitdiff
path: root/src/window.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-12-26 11:45:43 +0000
committerrubidium <rubidium@openttd.org>2007-12-26 11:45:43 +0000
commit2786d789a15990a27b73c0a4fbceb429e7dac953 (patch)
tree2bf1079b51205ab440f2044971a218287481a5f6 /src/window.cpp
parentaac835171e2ef3b72e3706754153c1b9304268a8 (diff)
downloadopenttd-2786d789a15990a27b73c0a4fbceb429e7dac953.tar.xz
(svn r11701) -Codechange: removal unnecessary inclusions of map.h (and split map.h).
Diffstat (limited to 'src/window.cpp')
-rw-r--r--src/window.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/window.cpp b/src/window.cpp
index dc6a86364..ef74e42f2 100644
--- a/src/window.cpp
+++ b/src/window.cpp
@@ -6,7 +6,6 @@
#include <stdarg.h>
#include "openttd.h"
#include "debug.h"
-#include "map.h"
#include "player.h"
#include "viewport.h"
#include "console.h"
@@ -17,6 +16,8 @@
#include "window_gui.h"
#include "zoom_func.h"
#include "core/alloc_func.hpp"
+#include "vehicle.h"
+#include "map_func.h"
/* delta between mouse cursor and upper left corner of dragged window */
static Point _drag_delta;