summaryrefslogtreecommitdiff
path: root/src/airport_movement.h
diff options
context:
space:
mode:
authorcelestar <celestar@openttd.org>2007-02-13 12:34:54 +0000
committercelestar <celestar@openttd.org>2007-02-13 12:34:54 +0000
commit6f68ac46b8c603b23123b5d899afa6988836f497 (patch)
tree794224f69f4b2276a61e39ad055658d196802fb3 /src/airport_movement.h
parentd1d1d170f38fd0b079b005a6fbe52355d03f542a (diff)
downloadopenttd-6f68ac46b8c603b23123b5d899afa6988836f497.tar.xz
(svn r8705) -Codechange: Increased the number of airport blocks to 64. This involves changing the enum of airport blocks to a static const uint64 as SOME platforms do not support 64-bit enums
Diffstat (limited to 'src/airport_movement.h')
-rw-r--r--src/airport_movement.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/airport_movement.h b/src/airport_movement.h
index 4892a4f32..1b225c808 100644
--- a/src/airport_movement.h
+++ b/src/airport_movement.h
@@ -9,7 +9,7 @@
typedef struct AirportFTAbuildup {
byte position; // the position that an airplane is at
byte heading; // the current orders (eg. TAKEOFF, HANGAR, ENDLANDING, etc.)
- uint32 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
} AirportFTAbuildup;