diff options
author | rubidium <rubidium@openttd.org> | 2010-08-28 17:32:30 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2010-08-28 17:32:30 +0000 |
commit | f9a9b0ed4aa6c7496bf5be49a9886b27ff01a979 (patch) | |
tree | 6b4ef5c35cfbda82e3ea7284ec09f7f1818f88e9 /src/table | |
parent | 1ec1f1ef374b70b0e057d806f1310b7aeadce50c (diff) | |
download | openttd-f9a9b0ed4aa6c7496bf5be49a9886b27ff01a979.tar.xz |
(svn r20649) -Codechange: implement classes 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 69e0768f3..a5b2a985f 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) { GRFFilePropsBase<2>(), name, size, build_cost_multiplier, clear_cost_multiplier, flags, true } +#define M(name, size, build_cost_multiplier, clear_cost_multiplier, flags) { GRFFilePropsBase<2>(), INVALID_OBJECT_CLASS, name, size, build_cost_multiplier, clear_cost_multiplier, flags, true } /** Specification of the original object structures. */ extern const ObjectSpec _original_objects[] = { |