summaryrefslogtreecommitdiff
path: root/src/engine.h
diff options
context:
space:
mode:
authorcelestar <celestar@openttd.org>2007-03-02 12:01:24 +0000
committercelestar <celestar@openttd.org>2007-03-02 12:01:24 +0000
commitf621608f7d142993b3185bc98c31c814455c519c (patch)
treefc8688953b36c1679e38f6949c6dbc0ad627ab66 /src/engine.h
parent879eca8e23c11089dd40dd30a6514f0f83c44423 (diff)
downloadopenttd-f621608f7d142993b3185bc98c31c814455c519c.tar.xz
(svn r8973) -Feature/Codechange: Changed the internal unit for aircraft velocities to from 8mph to 1km/h (peter1138), also give aircraft realsitic velocities (so that 1km/h is 1km/h independent of vehicle type) (peter1138). Introduce a flag to reduce aircraft speed in holding patterns to some realistic velocity. Use this flag for the city airport for the time being and make use of the different entry points for this airport type.
Diffstat (limited to 'src/engine.h')
-rw-r--r--src/engine.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/engine.h b/src/engine.h
index d1b06e678..4b2fa8f4e 100644
--- a/src/engine.h
+++ b/src/engine.h
@@ -68,7 +68,7 @@ typedef struct AircraftVehicleInfo {
byte subtype;
SoundFxByte sfx;
byte acceleration;
- byte max_speed;
+ uint16 max_speed;
byte mail_capacity;
uint16 passenger_capacity;
} AircraftVehicleInfo;