diff options
author | rubidium <rubidium@openttd.org> | 2010-07-16 17:45:34 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-07-16 17:45:34 +0000 |
commit | e809c05099b09bab8f23a4307e0088247478770c (patch) | |
tree | 7d9440f06e05022e329571cb5e22d6294fab6da9 /src/table | |
parent | 615e7ce38b49d7b76067115ad8444a18a2c7ee20 (diff) | |
download | openttd-e809c05099b09bab8f23a4307e0088247478770c.tar.xz |
(svn r20164) -Fix [FS#3870]: inconsistencies w.r.t. to km/h vs km-ish/h as "base" unit for aircraft speeds
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/engines.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table/engines.h b/src/table/engines.h index f92e3e04b..8e7d9da85 100644 --- a/src/table/engines.h +++ b/src/table/engines.h @@ -565,7 +565,7 @@ static const ShipVehicleInfo _orig_ship_vehicle_info[] = { * @param h mail_capacity (bags) * @param i passenger_capacity (persons) */ -#define AVI(a, b, c, d, e, f, g, h, i) { a, b, c, d, e, f, (g * 129) / 10, h, i } +#define AVI(a, b, c, d, e, f, g, h, i) { a, b, c, d, e, f, (g * 128) / 10, h, i } #define H AIR_HELI #define P AIR_CTOL #define J AIR_CTOL | AIR_FAST |