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
commita2de96abc09e4f64bdc860804275b033f721c153 (patch)
tree747fd1ba96fad463c54d15845ca5450671226083 /map.h
parent5885b31bb41066c2c5b01162570e3aab91ed9f23 (diff)
downloadopenttd-a2de96abc09e4f64bdc860804275b033f721c153.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))