Fixed uint8_t displaying as char

This commit is contained in:
Jordan Cristiano
2015-05-15 00:37:14 -04:00
parent ce51a094c2
commit 3752aecfa4
6 changed files with 7 additions and 6 deletions

View File

@ -37,7 +37,7 @@ namespace NetHandlers
void SVC_UserMessage_ToString_Internal(std::ostringstream& out, NetMsg::SVC_UserMessage* data)
{
out << "svc_UserMessage: type " << data->msgType
out << "svc_UserMessage: type " << static_cast<uint32_t>(data->msgType)
<< ", bytes " << math::BitsToBytes(data->dataLengthInBits);
}
}