diff options
author | belugas <belugas@openttd.org> | 2007-07-24 01:29:42 +0000 |
---|---|---|
committer | belugas <belugas@openttd.org> | 2007-07-24 01:29:42 +0000 |
commit | d87359a827c54afcc1d449c73fe576f413a4df38 (patch) | |
tree | 4af6ba3c57f40c0ca9bb2e2ccfdc9dd1b41d7c1f /src | |
parent | 7da7523caa0620aa7d88f2419b65bfeb189c636d (diff) | |
download | openttd-d87359a827c54afcc1d449c73fe576f413a4df38.tar.xz |
(svn r10670) -Fix: Use proper initialization for grf_prop override member
Diffstat (limited to 'src')
-rw-r--r-- | src/table/build_industry.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table/build_industry.h b/src/table/build_industry.h index 233d2b3e6..c0f9b7141 100644 --- a/src/table/build_industry.h +++ b/src/table/build_industry.h @@ -1532,7 +1532,7 @@ static const IndustrySpec _origin_industry_specs[NEW_INDUSTRYOFFSET] = { * @param a2 next frame of animation * @param a3 chooses between animation or construction state */ -#define MT(ca1, c1, ca2, c2, ca3, c3, sl, a1, a2, a3) {{c1, c2, c3}, {ca1, ca2, ca3}, sl, a1, a2, a3, 0, 0xFFFF, 2, 0, 0, true, {0, 0, NULL, NULL, 0}} +#define MT(ca1, c1, ca2, c2, ca3, c3, sl, a1, a2, a3) {{c1, c2, c3}, {ca1, ca2, ca3}, sl, a1, a2, a3, 0, 0xFFFF, 2, 0, 0, true, {0, 0, NULL, NULL, INVALID_INDUSTRYTILE}} static const IndustryTileSpec _origin_industry_tile_specs[NEW_INDUSTRYTILEOFFSET] = { /* Coal Mine */ MT(0, CT_INVALID, 0, CT_INVALID, 0, CT_INVALID, SLOPE_STEEP, INDUSTRYTILE_NOANIM, INDUSTRYTILE_NOANIM, false), |