From 61a6bc544d9e656feb4458b6f9a86f7b7e01e7d6 Mon Sep 17 00:00:00 2001 From: tron Date: Sun, 16 Jan 2005 11:24:58 +0000 Subject: (svn r1536) Move GET_TILEHEIGHT, GET_TILETYPE and IS_TILETYPE to map.h, turn them into inline functions and add some asserts --- aircraft_cmd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'aircraft_cmd.c') diff --git a/aircraft_cmd.c b/aircraft_cmd.c index c241155ac..d13af1a41 100644 --- a/aircraft_cmd.c +++ b/aircraft_cmd.c @@ -277,7 +277,7 @@ bool IsAircraftHangarTile(TileIndex tile) // 0x56 - hangar facing other way international airport (86) // 0x20 - hangar large airport (32) // 0x41 - hangar small airport (65) - return IS_TILETYPE(tile, MP_STATION) && + return IsTileType(tile, MP_STATION) && (_map5[tile] == 32 || _map5[tile] == 65 || _map5[tile] == 86); } -- cgit v1.2.3-54-g00ecf