diff options
author | Jan-Fabian Humann <malastare@gmx.net> | 2005-05-10 15:17:17 +0000 |
---|---|---|
committer | Jan-Fabian Humann <malastare@gmx.net> | 2005-05-10 15:17:17 +0000 |
commit | 0bc81cb39f48fdade13cf964702072cd9a7e324d (patch) | |
tree | de2d35865253ede90a893da57fc8ab30a599bdb6 /src/gui/sell.cpp | |
parent | c8a7dd468b50e8cfd84c859f0a03c68b176942e9 (diff) | |
download | mana-0bc81cb39f48fdade13cf964702072cd9a7e324d.tar.gz mana-0bc81cb39f48fdade13cf964702072cd9a7e324d.tar.bz2 mana-0bc81cb39f48fdade13cf964702072cd9a7e324d.tar.xz mana-0bc81cb39f48fdade13cf964702072cd9a7e324d.zip |
fixing a bug which occured when ItemManager's constructor calls logger (for example if items.xml is missing)
Diffstat (limited to 'src/gui/sell.cpp')
-rw-r--r-- | src/gui/sell.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/sell.cpp b/src/gui/sell.cpp index e12b61ed..f2e1677f 100644 --- a/src/gui/sell.cpp +++ b/src/gui/sell.cpp @@ -94,7 +94,7 @@ void SellDialog::addItem(short index, int price) ITEM_SHOP item_shop; sprintf(item_shop.name, "%s %i gp", - itemDb.getItemInfo(id)->getName().c_str(), price); + itemDb->getItemInfo(id)->getName().c_str(), price); item_shop.price = price; item_shop.index = index; item_shop.id = id; |