From e1841e31c606f1d97ea54c3f00f3380db814f3d2 Mon Sep 17 00:00:00 2001 From: Andrei Karas Date: Mon, 14 Jul 2014 22:44:37 +0300 Subject: Rename readInt8 into readUInt8 because it really read uint8_t. --- src/net/ea/chathandler.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'src/net/ea/chathandler.cpp') diff --git a/src/net/ea/chathandler.cpp b/src/net/ea/chathandler.cpp index 5c972db6b..4bbff5081 100644 --- a/src/net/ea/chathandler.cpp +++ b/src/net/ea/chathandler.cpp @@ -96,7 +96,7 @@ void ChatHandler::processWhisperResponse(Net::MessageIn &msg) mSentWhispers.pop(); } - const int type = msg.readInt8(); + const uint8_t type = msg.readUInt8(); switch (type) { case 0x00: @@ -283,9 +283,9 @@ void ChatHandler::processBeingChat(Net::MessageIn &msg, if (channels) { chatMsgLength -= 3; - channel = msg.readInt8(); - channel += msg.readInt8(); - channel += msg.readInt8(); + channel = msg.readUInt8(); + channel += msg.readUInt8(); + channel += msg.readUInt8(); } if (chatMsgLength <= 0) @@ -352,9 +352,9 @@ void ChatHandler::processChat(Net::MessageIn &msg, const bool normalChat, if (channels) { chatMsgLength -= 3; - channel = msg.readInt8(); - channel += msg.readInt8(); - channel += msg.readInt8(); + channel = msg.readUInt8(); + channel += msg.readUInt8(); + channel += msg.readUInt8(); } if (chatMsgLength <= 0) { @@ -434,8 +434,8 @@ void ChatHandler::processMVP(Net::MessageIn &msg) const void ChatHandler::processIgnoreAllResponse(Net::MessageIn &msg) const { BLOCK_START("ChatHandler::processIgnoreAllResponse") - const int action = msg.readInt8(); - const int fail = msg.readInt8(); + const uint8_t action = msg.readUInt8(); + const uint8_t fail = msg.readUInt8(); if (!localChatTab) { BLOCK_END("ChatHandler::processIgnoreAllResponse") -- cgit v1.2.3-60-g2f50