forked from mirror/openmw-tes3mp
[Client] Fix building
This commit is contained in:
parent
60574ae667
commit
b2339f2f9a
1 changed files with 2 additions and 2 deletions
|
@ -176,8 +176,8 @@ Networking::Networking(): peer(RakNet::RakPeerInterface::GetInstance()), playerP
|
|||
|
||||
RakNet::SocketDescriptor sd;
|
||||
sd.port=0;
|
||||
peer->Startup(1, &sd, 1);
|
||||
RakAssert(b==RAKNET_STARTED);
|
||||
auto b = peer->Startup(1, &sd, 1);
|
||||
RakAssert(b==RakNet::RAKNET_STARTED);
|
||||
|
||||
playerPacketController.SetStream(0, &bsOut);
|
||||
actorPacketController.SetStream(0, &bsOut);
|
||||
|
|
Loading…
Reference in a new issue