src/map.h
branchnoai
changeset 9601 b499fdd106d5
parent 9476 1d1ed96f32ad
child 7036 9f23930e7ded
child 9620 31e38d28a0af
--- a/src/map.h	Sun Apr 15 10:30:00 2007 +0000
+++ b/src/map.h	Sun Apr 22 19:06:48 2007 +0000
@@ -147,7 +147,7 @@
 uint DistanceFromEdge(TileIndex); ///< shortest distance from any edge of the map
 
 
-#define BEGIN_TILE_LOOP(var,w,h,tile)                      \
+#define BEGIN_TILE_LOOP(var, w, h, tile)                      \
 	{                                                        \
 		int h_cur = h;                                         \
 		uint var = tile;                                       \
@@ -155,7 +155,7 @@
 			int w_cur = w;                                       \
 			do {
 
-#define END_TILE_LOOP(var,w,h,tile)                        \
+#define END_TILE_LOOP(var, w, h, tile)                        \
 			} while (++var, --w_cur != 0);                       \
 		} while (var += TileDiffXY(0, 1) - (w), --h_cur != 0); \
 	}