mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 03:05:16 +00:00
packets/PlayerConnect: Initialize maxPlayerCount
It was sending bad data since it wasn't getting inited anywhere.
This commit is contained in:
parent
60a5179e4b
commit
8f21d43bc3
1 changed files with 3 additions and 1 deletions
|
@ -2,9 +2,11 @@
|
||||||
|
|
||||||
#include "Packet.h"
|
#include "Packet.h"
|
||||||
|
|
||||||
|
#include <cstdint>
|
||||||
|
|
||||||
struct PACKED PlayerConnect : Packet {
|
struct PACKED PlayerConnect : Packet {
|
||||||
PlayerConnect() : Packet() {this->mType = PacketType::PLAYERCON; mPacketSize = sizeof(PlayerConnect) - sizeof(Packet);};
|
PlayerConnect() : Packet() {this->mType = PacketType::PLAYERCON; mPacketSize = sizeof(PlayerConnect) - sizeof(Packet);};
|
||||||
ConnectionTypes conType;
|
ConnectionTypes conType;
|
||||||
u16 maxPlayerCount;
|
u16 maxPlayerCount = USHRT_MAX;
|
||||||
char clientName[COSTUMEBUFSIZE] = {};
|
char clientName[COSTUMEBUFSIZE] = {};
|
||||||
};
|
};
|
Loading…
Reference in a new issue