Core: Replace 0 literals with nullptr

This commit is contained in:
Lioncash
2015-10-02 22:06:17 -04:00
parent ce493b897d
commit 0f6c4653a4
6 changed files with 11 additions and 11 deletions

View File

@ -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);