summaryrefslogtreecommitdiff
path: root/src/newgrf_commons.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/newgrf_commons.h')
-rw-r--r--src/newgrf_commons.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/newgrf_commons.h b/src/newgrf_commons.h
index de4d292d7..3e8434748 100644
--- a/src/newgrf_commons.h
+++ b/src/newgrf_commons.h
@@ -324,13 +324,11 @@ struct GRFFilePropsBase {
/** Data related to the handling of grf files. */
struct GRFFileProps : GRFFilePropsBase<1> {
/** Set all default data constructor for the props. */
- GRFFileProps(uint16 subst_id) :
+ GRFFileProps(uint16 subst_id = 0) :
GRFFilePropsBase<1>(), subst_id(subst_id), override(subst_id)
{
}
- /** Simple constructor for the props. */
- GRFFileProps() : GRFFilePropsBase<1>() {}
uint16 subst_id;
uint16 override; ///< id of the entity been replaced by
};