diff options
author | frosch <frosch@openttd.org> | 2008-07-30 18:23:12 +0000 |
---|---|---|
committer | frosch <frosch@openttd.org> | 2008-07-30 18:23:12 +0000 |
commit | 93d0ca873163cee121cc481357670c06b5cccde2 (patch) | |
tree | e8219f143ce84fdcf02b32f82e184cc7e156023d /src/table | |
parent | 515b55c635199db71a41ff2bd9959b9844d0dfa1 (diff) | |
download | openttd-93d0ca873163cee121cc481357670c06b5cccde2.tar.xz |
(svn r13885) -Fix [FS#2168]: Var 0x7F is not feature-specific.
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 8467cb730..8421e368d 100644 --- a/src/table/cargo_const.h +++ b/src/table/cargo_const.h @@ -3,7 +3,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, 0, c, c, e, f, {g, h}, fr, te, 0, 0, ks1, ks2, ks3, ks4, ks5, l, m, NULL} + {bt, label, c, c, e, f, {g, h}, fr, te, 0, 0, ks1, ks2, ks3, ks4, ks5, l, m, NULL, NULL} static const CargoSpec _default_cargo[] = { MK( 0, 'PASS', 152, 1, 3185, 0, 24, false, TE_PASSENGERS, STR_000F_PASSENGERS, STR_002F_PASSENGER, STR_PASSENGERS, STR_QUANTITY_PASSENGERS, STR_ABBREV_PASSENGERS, |