summaryrefslogtreecommitdiff
path: root/map.h
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-01-29 13:33:14 +0000
committertron <tron@openttd.org>2005-01-29 13:33:14 +0000
commit3515b670d201aab581147e062fe47ea6be918980 (patch)
tree747fd1ba96fad463c54d15845ca5450671226083 /map.h
parent39858e696bffa2cb69edc9f968eafabce4c0304a (diff)
downloadopenttd-3515b670d201aab581147e062fe47ea6be918980.tar.xz
(svn r1714) Add missing include
Diffstat (limited to 'map.h')
-rw-r--r--map.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/map.h b/map.h
index a786e10a3..b504cb209 100644
--- a/map.h
+++ b/map.h
@@ -1,6 +1,8 @@
#ifndef MAP_H
#define MAP_H
+#include "stdafx.h"
+
#define TILE_FROM_XY(x,y) (int)((((y) >> 4) << MapLogX()) + ((x) >> 4))
#define TILE_XY(x,y) (((y) << MapLogX()) + (x))