diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-07-14 22:44:37 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-07-14 22:44:37 +0300 |
commit | e1841e31c606f1d97ea54c3f00f3380db814f3d2 (patch) | |
tree | fa9c9b178fe5ba9ca931e67332aef016efa95145 /src/net/ea/buysellhandler.cpp | |
parent | 72938b640199d03d6092366224d3927d5d2a33b9 (diff) | |
download | plus-e1841e31c606f1d97ea54c3f00f3380db814f3d2.tar.gz plus-e1841e31c606f1d97ea54c3f00f3380db814f3d2.tar.bz2 plus-e1841e31c606f1d97ea54c3f00f3380db814f3d2.tar.xz plus-e1841e31c606f1d97ea54c3f00f3380db814f3d2.zip |
Rename readInt8 into readUInt8 because it really read uint8_t.
Diffstat (limited to 'src/net/ea/buysellhandler.cpp')
-rw-r--r-- | src/net/ea/buysellhandler.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/net/ea/buysellhandler.cpp b/src/net/ea/buysellhandler.cpp index f8871748f..f8a6651ef 100644 --- a/src/net/ea/buysellhandler.cpp +++ b/src/net/ea/buysellhandler.cpp @@ -169,7 +169,7 @@ void BuySellHandler::processNpcSell(Net::MessageIn &msg, void BuySellHandler::processNpcBuyResponse(Net::MessageIn &msg) const { - if (msg.readInt8() == 0) + if (msg.readUInt8() == 0U) { NotifyManager::notify(NotifyTypes::BUY_DONE); } |