summaryrefslogtreecommitdiff
path: root/src/engine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/engine.cpp')
-rw-r--r--src/engine.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/engine.cpp b/src/engine.cpp
index 8a421041..85c737c9 100644
--- a/src/engine.cpp
+++ b/src/engine.cpp
@@ -341,8 +341,9 @@ void Engine::draw()
int sy = y - camera_y;
int absx = sx * 32 - offset_x;
int absy = sy * 32 - offset_y;
- if (itemDb.getImage(floorItem->id) > 0) {
- itemset->spriteset[itemDb.getImage(floorItem->id) - 1]->draw(screen,
+ if (itemDb.getItemInfo(floorItem->id)->getImage() > 0) {
+ itemset->spriteset[itemDb.getItemInfo(
+ floorItem->id)->getImage() - 1]->draw(screen,
absx, absy);
}