mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-04-20 19:44:57 +00:00
Fix crash when a player leaves in NetPlay.
The player ID was being written as int and read as PlayerId (u8).
This commit is contained in:
parent
229b35bb6d
commit
80b14e80b5
1 changed files with 1 additions and 1 deletions
|
@ -241,7 +241,7 @@ unsigned int NetPlayServer::OnDisconnect(sf::SocketTCP& socket)
|
|||
SendToClients(spac);
|
||||
}
|
||||
|
||||
int pid = m_players[socket].pid;
|
||||
PlayerId pid = m_players[socket].pid;
|
||||
|
||||
sf::Packet spac;
|
||||
spac << (MessageId)NP_MSG_PLAYER_LEAVE;
|
||||
|
|
Loading…
Add table
Reference in a new issue