summaryrefslogtreecommitdiff
path: root/aircraft_cmd.c
diff options
context:
space:
mode:
authortron <tron@openttd.org>2005-06-24 12:38:35 +0000
committertron <tron@openttd.org>2005-06-24 12:38:35 +0000
commita733fede9b21d5e74a007ed64263bc07535ee25c (patch)
tree17004bd894946da466a10e50a86ff66225cf8896 /aircraft_cmd.c
parent6699ee79d3c1d58be04351cc2bc18c683f4655dd (diff)
downloadopenttd-a733fede9b21d5e74a007ed64263bc07535ee25c.tar.xz
(svn r2483) Replace almost 500 "uint tile" (and variants) with "TileIndex tile"
Diffstat (limited to 'aircraft_cmd.c')
-rw-r--r--aircraft_cmd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/aircraft_cmd.c b/aircraft_cmd.c
index f17a36216..aa9f82225 100644
--- a/aircraft_cmd.c
+++ b/aircraft_cmd.c
@@ -844,7 +844,8 @@ static bool AircraftController(Vehicle *v)
// prevent going to 0,0 if airport is deleted.
{
- uint tile = st->airport_tile;
+ TileIndex tile = st->airport_tile;
+
if (tile == 0) tile = st->xy;
// xy of destination
x = TileX(tile) * 16;