src/map.h
branchcpp_gui
changeset 6308 646711c5feaa
parent 6303 84c215fc8eb8
child 9911 0b8b245a2391
--- a/src/map.h	Sun Apr 15 17:04:44 2007 +0000
+++ b/src/map.h	Sat Apr 21 08:23:57 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); \
 	}