From 51b85e9aebb4f69bac02390c3546e94058fe13c6 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Fri, 25 Mar 2016 00:10:20 +0300 Subject: Fix compilation without C++11 flags. --- src/net/eathena/buysellrecv.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/net/eathena/buysellrecv.cpp') diff --git a/src/net/eathena/buysellrecv.cpp b/src/net/eathena/buysellrecv.cpp index 8fa02d185..acf53def6 100644 --- a/src/net/eathena/buysellrecv.cpp +++ b/src/net/eathena/buysellrecv.cpp @@ -55,7 +55,8 @@ 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( + msg.readUInt8("type")); const int itemId = msg.readInt16("item id"); const ItemColor color = ItemColor_one; Ea::BuySellRecv::mBuyDialog->addItem(itemId, type, color, 0, value); -- cgit v1.2.3-70-g09d2