map.h
changeset 1210 05975e9167c4
parent 1209 a1ac96655b79
child 1218 353a7773bc3c
--- a/map.h	Sat Jan 29 12:19:05 2005 +0000
+++ b/map.h	Sat Jan 29 13:33:14 2005 +0000
@@ -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))