From 15b4941401f71657d08d0beb16bbeee864261916 Mon Sep 17 00:00:00 2001 From: rubidium Date: Sun, 12 Dec 2010 17:36:34 +0000 Subject: (svn r21483) -Codechange: make StationRect::ScanForStationTiles make use of TILE_AREA_LOOP. Making use of make makes me making use of my brain to determine whether I make use of tautology, or make use of pleonasm, or make use of both, or even make use of neither --- src/station.cpp | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'src/station.cpp') diff --git a/src/station.cpp b/src/station.cpp index 6ad19475f..003798a8f 100644 --- a/src/station.cpp +++ b/src/station.cpp @@ -428,11 +428,8 @@ CommandCost StationRect::BeforeAddRect(TileIndex tile, int w, int h, StationRect */ /* static */ bool StationRect::ScanForStationTiles(StationID st_id, int left_a, int top_a, int right_a, int bottom_a) { - TileIndex top_left = TileXY(left_a, top_a); - int width = right_a - left_a + 1; - int height = bottom_a - top_a + 1; - - TILE_LOOP(tile, width, height, top_left) { + TileArea ta(TileXY(left_a, top_a), TileXY(right_a, bottom_a)); + TILE_AREA_LOOP(tile, ta) { if (IsTileType(tile, MP_STATION) && GetStationIndex(tile) == st_id) return true; } -- cgit v1.2.3-54-g00ecf