mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00: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:
parent
a034f378a0
commit
80b4a4d7fd
2 changed files with 4 additions and 3 deletions
|
@ -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);
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue