summaryrefslogtreecommitdiff
path: root/src/net/eathena/markethandler.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2016-03-25 00:10:20 +0300
committerAndrei Karas <akaras@inbox.ru>2016-03-25 00:10:20 +0300
commit51b85e9aebb4f69bac02390c3546e94058fe13c6 (patch)
tree02d0e0a3ee5b9f0517f43b954a62cd7b15c5f28a /src/net/eathena/markethandler.cpp
parent4e97da8e138b21a5f5bea75e6a8d3211e4f28594 (diff)
downloadplus-51b85e9aebb4f69bac02390c3546e94058fe13c6.tar.gz
plus-51b85e9aebb4f69bac02390c3546e94058fe13c6.tar.bz2
plus-51b85e9aebb4f69bac02390c3546e94058fe13c6.tar.xz
plus-51b85e9aebb4f69bac02390c3546e94058fe13c6.zip
Fix compilation without C++11 flags.
Diffstat (limited to 'src/net/eathena/markethandler.cpp')
-rw-r--r--src/net/eathena/markethandler.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/eathena/markethandler.cpp b/src/net/eathena/markethandler.cpp
index 15370d91c..2aeaf6787 100644
--- a/src/net/eathena/markethandler.cpp
+++ b/src/net/eathena/markethandler.cpp
@@ -106,7 +106,7 @@ void MarketHandler::buyItems(const std::vector<ShopItem*> &items) const
item->increaseQuantity(usedQuantity);
item->increaseUsedQuantity(-usedQuantity);
item->update();
- const ItemTypeT type = fromInt(item->getType(), ItemTypeT);
+ const ItemTypeT type = item->getType();
if (type == ItemType::Weapon ||
type == ItemType::Armor ||
type == ItemType::PetEgg ||