diff options
author | tron <tron@openttd.org> | 2005-01-29 13:33:14 +0000 |
---|---|---|
committer | tron <tron@openttd.org> | 2005-01-29 13:33:14 +0000 |
commit | 3515b670d201aab581147e062fe47ea6be918980 (patch) | |
tree | 747fd1ba96fad463c54d15845ca5450671226083 | |
parent | 39858e696bffa2cb69edc9f968eafabce4c0304a (diff) | |
download | openttd-3515b670d201aab581147e062fe47ea6be918980.tar.xz |
(svn r1714) Add missing include
-rw-r--r-- | map.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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)) |