summaryrefslogtreecommitdiff
path: root/src/gui/itemcontainer.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/itemcontainer.cpp')
-rw-r--r--src/gui/itemcontainer.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gui/itemcontainer.cpp b/src/gui/itemcontainer.cpp
index fa949c9a..616eb0f5 100644
--- a/src/gui/itemcontainer.cpp
+++ b/src/gui/itemcontainer.cpp
@@ -60,6 +60,13 @@ void ItemContainer::draw(gcn::Graphics* graphics)
if (items[selectedItem].quantity <= 0) {
selectedItem = -1;
}
+
+ if (selectedItem >= 0) {
+ int itemX = (((selectedItem - 2) * 24) % (getWidth() - 24));
+ int itemY = (((selectedItem - 2) * 24) / (getWidth() - 24)) * 24;
+ itemX -= itemX % 24;
+ selImg->draw(screen, x + itemX, y+itemY);
+ }
for (int i = 0; i < INVENTORY_SIZE; i++) {
int itemX = (((i - 2) * 24) % (getWidth() - 24));
@@ -81,13 +88,6 @@ void ItemContainer::draw(gcn::Graphics* graphics)
gcn::Graphics::CENTER);
}
}
-
- if (selectedItem >= 0) {
- int itemX = (((selectedItem - 2) * 24) % (getWidth() - 24));
- int itemY = (((selectedItem - 2) * 24) / (getWidth() - 24)) * 24;
- itemX -= itemX % 24;
- selImg->draw(screen, x + itemX, y+itemY);
- }
}
int ItemContainer::getIndex()