summaryrefslogtreecommitdiff
path: root/src/cargotype.h
diff options
context:
space:
mode:
authorfrosch <frosch@openttd.org>2008-07-30 18:23:12 +0000
committerfrosch <frosch@openttd.org>2008-07-30 18:23:12 +0000
commitd54d8bf295fdc82580746a78c6feeb5e10d19047 (patch)
treee8219f143ce84fdcf02b32f82e184cc7e156023d /src/cargotype.h
parentd4774bdbab816a442f57c58fa0eb49e6fc35dc20 (diff)
downloadopenttd-d54d8bf295fdc82580746a78c6feeb5e10d19047.tar.xz
(svn r13885) -Fix [FS#2168]: Var 0x7F is not feature-specific.
Diffstat (limited to 'src/cargotype.h')
-rw-r--r--src/cargotype.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cargotype.h b/src/cargotype.h
index e8498cc72..db1a6f0d5 100644
--- a/src/cargotype.h
+++ b/src/cargotype.h
@@ -25,7 +25,6 @@ enum TownEffect {
struct CargoSpec {
uint8 bitnum;
CargoLabel label;
- uint32 grfid;
uint8 legend_colour;
uint8 rating_colour;
uint8 weight;
@@ -46,6 +45,7 @@ struct CargoSpec {
SpriteID sprite;
uint16 classes;
+ const struct GRFFile *grffile; ///< NewGRF where 'group' belongs to
const struct SpriteGroup *group;
bool IsValid() const;