diff options
author | rubidium <rubidium@openttd.org> | 2015-03-13 19:42:49 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2015-03-13 19:42:49 +0000 |
commit | 13e3ef53e34190e125b7827075a56d16adf98c75 (patch) | |
tree | ce417a8f4e0cf7dbc20351a5628c6876a432c8c3 | |
parent | 3462cc1f5d2d603c49112d03449159f07ecaae52 (diff) | |
download | openttd-13e3ef53e34190e125b7827075a56d16adf98c75.tar.xz |
(svn r27183) -Fix: GCC5 compilation
-rw-r--r-- | src/table/object_land.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/table/object_land.h b/src/table/object_land.h index 035b1ee8e..a19b2cb08 100644 --- a/src/table/object_land.h +++ b/src/table/object_land.h @@ -123,7 +123,7 @@ static const DrawTileSprites _object_hq[] = { #undef TILE_SPRITE_LINE -#define M(name, size, build_cost_multiplier, clear_cost_multiplier, height, climate, gen_amount, flags) { GRFFilePropsBase<2>(), INVALID_OBJECT_CLASS, name, climate, size, build_cost_multiplier, clear_cost_multiplier, 0, 0xFFFFFFFF, flags, {0, 0, 0, 0}, 0, height, 1, gen_amount, true } +#define M(name, size, build_cost_multiplier, clear_cost_multiplier, height, climate, gen_amount, flags) { GRFFilePropsBase<2>(), INVALID_OBJECT_CLASS, name, climate, size, build_cost_multiplier, clear_cost_multiplier, 0, MAX_DAY + 1, flags, {0, 0, 0, 0}, 0, height, 1, gen_amount, true } /* Climates * T = Temperate |