mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 16:49:58 -06:00
NetPlayProto: Remove now-unused MessageId type alias
Now that we have enum helpers for inserting values into packets and have migrated all other enumerations over, there's no need to keep this alias around any longer.
This commit is contained in:
@ -431,9 +431,9 @@ ConnectionError NetPlayServer::OnConnect(ENetPeer* socket, sf::Packet& rpac)
|
||||
spac << player.pid << player.name << player.revision;
|
||||
SendToClients(spac);
|
||||
|
||||
// send new client success message with their id
|
||||
// send new client success message with their ID
|
||||
spac.clear();
|
||||
spac << static_cast<MessageId>(0);
|
||||
spac << MessageID::ConnectionSuccessful;
|
||||
spac << player.pid;
|
||||
Send(player.socket, spac);
|
||||
|
||||
|
Reference in New Issue
Block a user