From a2de96abc09e4f64bdc860804275b033f721c153 Mon Sep 17 00:00:00 2001 From: tron Date: Sat, 29 Jan 2005 13:33:14 +0000 Subject: [PATCH] (svn r1714) Add missing include --- map.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/map.h b/map.h index a786e10a35..b504cb2092 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))