diff options
author | rubidium <rubidium@openttd.org> | 2010-08-28 17:30:55 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-08-28 17:30:55 +0000 |
commit | 1ec1f1ef374b70b0e057d806f1310b7aeadce50c (patch) | |
tree | d6f6372fa139e30557ab074379f979c7776e27ae /src/table | |
parent | 34da98f2b14e63c7042f44271d0b452fcd970737 (diff) | |
download | openttd-1ec1f1ef374b70b0e057d806f1310b7aeadce50c.tar.xz |
(svn r20648) -Codechange: implement the NewGRF override manager for objects
Diffstat (limited to 'src/table')
-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 c5c05fe52..69e0768f3 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, flags) { name, size, build_cost_multiplier, clear_cost_multiplier, flags, true } +#define M(name, size, build_cost_multiplier, clear_cost_multiplier, flags) { GRFFilePropsBase<2>(), name, size, build_cost_multiplier, clear_cost_multiplier, flags, true } /** Specification of the original object structures. */ extern const ObjectSpec _original_objects[] = { |