src/map.h
branchgamebalance
changeset 9910 0b2aebc8283e
parent 9896 2473804114de
child 9911 0b8b245a2391
--- a/src/map.h	Wed Jun 13 11:00:24 2007 +0000
+++ b/src/map.h	Wed Jun 13 11:17:30 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); \
 	}