mirror of
https://github.com/UberGames/lilium-voyager.git
synced 2024-12-13 05:31:29 +00:00
fix wrong socket ID comparison, from /dev/humancontroller
This commit is contained in:
parent
2131536d07
commit
c16338cfa9
1 changed files with 1 additions and 1 deletions
|
@ -1533,7 +1533,7 @@ void NET_Config( qboolean enableNetworking ) {
|
||||||
ip_socket = INVALID_SOCKET;
|
ip_socket = INVALID_SOCKET;
|
||||||
}
|
}
|
||||||
|
|
||||||
if(multicast6_socket)
|
if(multicast6_socket != INVALID_SOCKET)
|
||||||
{
|
{
|
||||||
if(multicast6_socket != ip6_socket)
|
if(multicast6_socket != ip6_socket)
|
||||||
closesocket(multicast6_socket);
|
closesocket(multicast6_socket);
|
||||||
|
|
Loading…
Reference in a new issue