mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-02 00:15:06 +01:00
room_member: fix 3 typos
This commit is contained in:
parent
ca701e2610
commit
fc876e727a
@ -217,7 +217,7 @@ void RoomMember::RoomMemberImpl::HandleRoomInformationPacket(const ENetEvent* ev
|
|||||||
packet.Append(event->packet->data, event->packet->dataLength);
|
packet.Append(event->packet->data, event->packet->dataLength);
|
||||||
|
|
||||||
// Ignore the first byte, which is the message id.
|
// Ignore the first byte, which is the message id.
|
||||||
packet.IgnoreBytes(sizeof(u8)); // Igonore the message type
|
packet.IgnoreBytes(sizeof(u8)); // Ignore the message type
|
||||||
|
|
||||||
RoomInformation info{};
|
RoomInformation info{};
|
||||||
packet >> info.name;
|
packet >> info.name;
|
||||||
@ -248,7 +248,7 @@ void RoomMember::RoomMemberImpl::HandleJoinPacket(const ENetEvent* event) {
|
|||||||
packet.Append(event->packet->data, event->packet->dataLength);
|
packet.Append(event->packet->data, event->packet->dataLength);
|
||||||
|
|
||||||
// Ignore the first byte, which is the message id.
|
// Ignore the first byte, which is the message id.
|
||||||
packet.IgnoreBytes(sizeof(u8)); // Igonore the message type
|
packet.IgnoreBytes(sizeof(u8)); // Ignore the message type
|
||||||
|
|
||||||
// Parse the MAC Address from the packet
|
// Parse the MAC Address from the packet
|
||||||
packet >> mac_address;
|
packet >> mac_address;
|
||||||
@ -261,7 +261,7 @@ void RoomMember::RoomMemberImpl::HandleWifiPackets(const ENetEvent* event) {
|
|||||||
packet.Append(event->packet->data, event->packet->dataLength);
|
packet.Append(event->packet->data, event->packet->dataLength);
|
||||||
|
|
||||||
// Ignore the first byte, which is the message id.
|
// Ignore the first byte, which is the message id.
|
||||||
packet.IgnoreBytes(sizeof(u8)); // Igonore the message type
|
packet.IgnoreBytes(sizeof(u8)); // Ignore the message type
|
||||||
|
|
||||||
// Parse the WifiPacket from the packet
|
// Parse the WifiPacket from the packet
|
||||||
u8 frame_type;
|
u8 frame_type;
|
||||||
|
Loading…
Reference in New Issue
Block a user