diff options
author | rubidium <rubidium@openttd.org> | 2007-05-29 08:20:38 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2007-05-29 08:20:38 +0000 |
commit | 4726fdc0d0de35bfb12d92f2c913a5ad3b91d647 (patch) | |
tree | 923d8c9ee2e582ce2f23f00b5122a2c9aa3a93df /src/table | |
parent | 17b6ce80c7e6f1d7092ca46563b747e40814c84c (diff) | |
download | openttd-4726fdc0d0de35bfb12d92f2c913a5ad3b91d647.tar.xz |
(svn r9972) -Fix (r9969): silence a warning.
Diffstat (limited to 'src/table')
-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 7e56efcc2..bb81dd29a 100644 --- a/src/table/build_industry.h +++ b/src/table/build_industry.h @@ -1530,7 +1530,7 @@ static const IndustrySpec _industry_specs[] = { * @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, 0, 0, NULL, NULL, 0, true} +#define MT(ca1, c1, ca2, c2, ca3, c3, sl, a1, a2, a3) {{c1, c2, c3}, {ca1, ca2, ca3}, sl, a1, a2, a3, 0, {0, 0, NULL, NULL, 0, true}} static const IndustryTileSpec _industry_tile_specs[] = { /* Coal Mine */ MT(0, CT_INVALID, 0, CT_INVALID, 0, CT_INVALID, SLOPE_STEEP, INDUTILE_NOANIM, INDUTILE_NOANIM, false), |