summaryrefslogtreecommitdiff
path: root/src/net/tmwa/buysellrecv.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/tmwa/buysellrecv.cpp
parent4e97da8e138b21a5f5bea75e6a8d3211e4f28594 (diff)
downloadManaVerse-51b85e9aebb4f69bac02390c3546e94058fe13c6.tar.gz
ManaVerse-51b85e9aebb4f69bac02390c3546e94058fe13c6.tar.bz2
ManaVerse-51b85e9aebb4f69bac02390c3546e94058fe13c6.tar.xz
ManaVerse-51b85e9aebb4f69bac02390c3546e94058fe13c6.zip
Fix compilation without C++11 flags.
Diffstat (limited to 'src/net/tmwa/buysellrecv.cpp')
-rw-r--r--src/net/tmwa/buysellrecv.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/tmwa/buysellrecv.cpp b/src/net/tmwa/buysellrecv.cpp
index 625cb2a14..efc7a9172 100644
--- a/src/net/tmwa/buysellrecv.cpp
+++ b/src/net/tmwa/buysellrecv.cpp
@@ -54,7 +54,7 @@ void BuySellRecv::processNpcBuy(Net::MessageIn &msg)
{
const int value = msg.readInt32("price");
msg.readInt32("dc value?");
- const ItemTypeT type = fromInt(msg.readUInt8("type"), ItemTypeT);
+ const ItemTypeT type = static_cast<ItemTypeT>(msg.readUInt8("type"));
const int itemId = msg.readInt16("item id");
const ItemColor color = ItemColor_one;
Ea::BuySellRecv::mBuyDialog->addItem(itemId, type, color, 0, value);