pathfind.c
changeset 900 feed1801fd35
parent 753 2a212e89df1c
child 905 231503a1523d
--- a/pathfind.c	Wed Jan 05 13:15:27 2005 +0000
+++ b/pathfind.c	Wed Jan 05 13:32:03 2005 +0000
@@ -140,7 +140,7 @@
 	// This addition will sometimes overflow by a single tile.
 	// The use of TILE_MASK here makes sure that we still point at a valid
 	// tile, and then this tile will be in the sentinel row/col, so GetTileTrackStatus will fail.
-	tile = TILE_MASK(tile + _tileoffs_by_dir[direction]);
+	tile = TILE_MASK(tile + TileOffsByDir(direction));
 
 	/* Check in case of rail if the owner is the same */
 	if (tpf->tracktype == TRANSPORT_RAIL) {
@@ -283,7 +283,7 @@
 			return;
 		tile = SkipToEndOfTunnel(tpf, tile, direction);
 	}
-	tile += _tileoffs_by_dir[direction];
+	tile += TileOffsByDir(direction);
 
 	/* Check in case of rail if the owner is the same */
 	if (tpf->tracktype == TRANSPORT_RAIL) {
@@ -638,7 +638,7 @@
 	tile_org = tile;
 
 	for(;;) {
-		tile += _tileoffs_by_dir[direction];
+		tile += TileOffsByDir(direction);
 
 		// too long search length? bail out.
 		if (++si.cur_length >= tpf->maxlength)