summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog2
-rw-r--r--src/gui/sell.cpp2
2 files changed, 3 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 008d10d1..d4a28d23 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
2005-08-30 Eugenio Favalli <elvenprogrammer@gmail.com>
* The Mana World.dev: Updated project file.
+ * data/graphics/sprites/npcs.png, src/gui/sell.cpp: Added empty sprite and
+ reorganized spriteset, fixed a typo.
2005-08-29 Björn Steinbrink <B.Steinbrink@gmx.de>
diff --git a/src/gui/sell.cpp b/src/gui/sell.cpp
index 784f38b6..2684fc2a 100644
--- a/src/gui/sell.cpp
+++ b/src/gui/sell.cpp
@@ -162,7 +162,7 @@ void SellDialog::addItem(Item *item, int price)
item_shop.name = ss.str();
item_shop.price = price;
item_shop.index = item->getInvIndex();
- item_shop.id = item->getId();;
+ item_shop.id = item->getId();
item_shop.quantity = item->getQuantity();
shopInventory.push_back(item_shop);