mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-28 16:49:58 -06:00
Core: Replace 0 literals with nullptr
This commit is contained in:
@ -231,7 +231,7 @@ unsigned int NetPlayServer::OnConnect(ENetPeer* socket)
|
||||
ENetPacket* epack;
|
||||
do
|
||||
{
|
||||
epack = enet_peer_receive(socket, 0);
|
||||
epack = enet_peer_receive(socket, nullptr);
|
||||
} while (epack == nullptr);
|
||||
rpac.append(epack->data, epack->dataLength);
|
||||
|
||||
|
Reference in New Issue
Block a user