summaryrefslogtreecommitdiff
path: root/src/industrytype.h
diff options
context:
space:
mode:
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*/