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 | a2de96abc09e4f64bdc860804275b033f721c153 (patch) | |
tree | 747fd1ba96fad463c54d15845ca5450671226083 | |
parent | 5885b31bb41066c2c5b01162570e3aab91ed9f23 (diff) | |
download | openttd-a2de96abc09e4f64bdc860804275b033f721c153.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)) |