Merge pull request #3123 from lioncash/null

Core: Replace 0 literals with nullptr
This commit is contained in:
Scott Mansell 2015-10-03 16:19:46 +13:00
commit bcee41b65d
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);