Browse Source

engine: client: allow IPv6 in NetAPI

pull/2/head
Alibek Omarov 2 years ago
parent
commit
c9e4e62474
  1. 2
      engine/client/cl_game.c

2
engine/client/cl_game.c

@ -3360,7 +3360,7 @@ void GAME_EXPORT NetAPI_SendRequest( int context, int request, int flags, double @@ -3360,7 +3360,7 @@ void GAME_EXPORT NetAPI_SendRequest( int context, int request, int flags, double
return;
}
if( remote_address->type >= NA_IPX )
if( remote_address->type != NA_IPX && remote_address->type != NA_BROADCAST_IPX )
return; // IPX no longer support
// find a free request

Loading…
Cancel
Save