summaryrefslogtreecommitdiff
path: root/src/table/airport_movement.h
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-03-18 21:02:20 +0000
committeryexo <yexo@openttd.org>2010-03-18 21:02:20 +0000
commitc4a88ce0225a57243a79e28d133c2ecd884bee68 (patch)
tree766e1e5469d2c9d2956f5d6c79fd5bba787cf2ca /src/table/airport_movement.h
parent0eb5709c86f8dbfdcf7f91a178e46be4a1bc53d0 (diff)
downloadopenttd-c4a88ce0225a57243a79e28d133c2ecd884bee68.tar.xz
(svn r19455) -Codechange: split all airport information in Station to a seperate class
Diffstat (limited to 'src/table/airport_movement.h')
-rw-r--r--src/table/airport_movement.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table/airport_movement.h b/src/table/airport_movement.h
index 426a04c9e..2bcd94536 100644
--- a/src/table/airport_movement.h
+++ b/src/table/airport_movement.h
@@ -18,7 +18,7 @@
struct AirportFTAbuildup {
byte position; // the position that an airplane is at
byte heading; // the current orders (eg. TAKEOFF, HANGAR, ENDLANDING, etc.)
- uint64 block; // the block this position is on on the airport (st->airport_flags)
+ uint64 block; // the block this position is on on the airport (st->airport.flags)
byte next; // next position from this position
};