summaryrefslogtreecommitdiff
path: root/src/industrytype.h
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-08-07 20:51:07 +0000
committerrubidium <rubidium@openttd.org>2010-08-07 20:51:07 +0000
commitaf9d8824bd7d08fa512f34c02c238d0042d060a7 (patch)
tree170c8c3254db148d81d53cf6ee71f8a1ae169c04 /src/industrytype.h
parentf5d972cadee484c55987564b0103be83854329d4 (diff)
downloadopenttd-af9d8824bd7d08fa512f34c02c238d0042d060a7.tar.xz
(svn r20398) -Codechange: move some variables of GRFFileProps into (the new) GRFFilePropsBase
Diffstat (limited to 'src/industrytype.h')
-rw-r--r--src/industrytype.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/industrytype.h b/src/industrytype.h
index e1d8b3596..c67c7d1f3 100644
--- a/src/industrytype.h
+++ b/src/industrytype.h
@@ -131,7 +131,7 @@ struct IndustrySpec {
uint16 callback_mask; ///< Bitmask of industry callbacks that have to be called
uint8 cleanup_flag; ///< flags indicating which data should be freed upon cleaning up
bool enabled; ///< entity still avaible (by default true).newgrf can disable it, though
- struct GRFFileProps grf_prop; ///< properties related the the grf file
+ GRFFileProps grf_prop; ///< properties related the the grf file
/**
* Is an industry with the spec a raw industry?
@@ -172,7 +172,7 @@ struct IndustryTileSpec {
uint8 animation_triggers; ///< When to start the animation
IndustryTileSpecialFlags special_flags; ///< Bitmask of extra flags used by the tile
bool enabled; ///< entity still avaible (by default true).newgrf can disable it, though
- struct GRFFileProps grf_prop;
+ GRFFileProps grf_prop; ///< properties related the the grf file
};
/* industry_cmd.cpp*/