diff options
author | frosch <frosch@openttd.org> | 2009-09-06 20:36:17 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2009-09-06 20:36:17 +0000 |
commit | eb1306110a84eb1cb4f1d755bb9e24b745171749 (patch) | |
tree | f58ce88620c1ad6c1640c0f9ed19659ca8d35ded /src/table | |
parent | 00ed9c83eed27ca566b526cd06922e108c511e1d (diff) | |
download | openttd-eb1306110a84eb1cb4f1d755bb9e24b745171749.tar.xz |
(svn r17435) -Codechange: Move _cargo_payment_rates[] to CargoSpec::current_payment.
Diffstat (limited to 'src/table')
-rw-r--r-- | src/table/cargo_const.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table/cargo_const.h b/src/table/cargo_const.h index 2ace23258..410713f11 100644 --- a/src/table/cargo_const.h +++ b/src/table/cargo_const.h @@ -10,7 +10,7 @@ /** @file cargo_const.h Table of all default cargo types */ #define MK(bt, label, c, e, f, g, h, fr, te, ks1, ks2, ks3, ks4, ks5, l, m) \ - {bt, label, c, c, e, f, {g, h}, fr, te, 0, 0, ks1, ks2, ks3, ks4, ks5, l, m, NULL, NULL} + {bt, label, c, c, e, f, {g, h}, fr, te, 0, 0, ks1, ks2, ks3, ks4, ks5, l, m, NULL, NULL, 0} static const CargoSpec _default_cargo[] = { MK( 0, 'PASS', 152, 1, 3185, 0, 24, false, TE_PASSENGERS, STR_CARGO_PLURAL_PASSENGERS, STR_CARGO_SINGULAR_PASSENGER, STR_PASSENGERS, STR_QUANTITY_PASSENGERS, STR_ABBREV_PASSENGERS, |