Skip to content

Commit

Permalink
Fixing compile error in XCode
Browse files Browse the repository at this point in the history
  • Loading branch information
aardvarkk committed Jan 12, 2016
1 parent 1a16989 commit 68cffe3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/ReplicaManager3.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ void ReplicaManager3::AutoCreateConnectionList(
{
for (unsigned int index=0; index < participantListIn.Size(); index++)
{
if (GetConnectionByGUID(participantListIn[index], worldId)==false)
if (GetConnectionByGUID(participantListIn[index], worldId)==nullptr)
{
Connection_RM3 *connection = AllocConnection(rakPeerInterface->GetSystemAddressFromGuid(participantListIn[index]), participantListIn[index]);
if (connection)
Expand Down

0 comments on commit 68cffe3

Please sign in to comment.