summaryrefslogtreecommitdiff
path: root/src/object_gui.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2010-12-10 21:32:52 +0000
committerrubidium <rubidium@openttd.org>2010-12-10 21:32:52 +0000
commit5d0da9492e2c8f296f2689e3174e8d9832c7872d (patch)
treee271e6d6d625d0c5eea4ba0a9ef8ae4ca360923f /src/object_gui.cpp
parentcd6180a46d0f15f66f170fc89886980e7a49dab7 (diff)
downloadopenttd-5d0da9492e2c8f296f2689e3174e8d9832c7872d.tar.xz
(svn r21454) -Codechange: add support for object variable 48
Diffstat (limited to 'src/object_gui.cpp')
-rw-r--r--src/object_gui.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/object_gui.cpp b/src/object_gui.cpp
index a56fc051f..7a3c7cf07 100644
--- a/src/object_gui.cpp
+++ b/src/object_gui.cpp
@@ -170,7 +170,7 @@ public:
const DrawTileSprites *dts = &_objects[spec->grf_prop.local_id];
DrawOrigTileSeqInGUI((r.right - r.left) / 2 - 1, this->object_height + OBJECT_MARGIN, dts, PAL_NONE);
} else {
- DrawNewObjectTileInGUI((r.right - r.left) / 2 - 1, this->object_height + OBJECT_MARGIN, spec);
+ DrawNewObjectTileInGUI((r.right - r.left) / 2 - 1, this->object_height + OBJECT_MARGIN, spec, 0);
}
_cur_dpi = old_dpi;
}