(svn r26071) -Fix: always initialise GRFFileProps

This commit is contained in:
rubidium 2013-11-23 18:11:22 +00:00
parent 1b9e32664f
commit 729d64d8d9

View File

@ -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
};