2
0
mirror of https://github.com/FWGS/xash3d-fwgs synced 2024-11-22 09:56:22 +01:00

engine: net_ws: request Winsock 2

This commit is contained in:
Alibek Omarov 2024-11-17 03:12:20 +03:00
parent 77fb2d0eb2
commit 399d549d0c

View File

@ -2057,7 +2057,7 @@ void NET_Init( void )
} }
#if XASH_WIN32 #if XASH_WIN32
if( WSAStartup( MAKEWORD( 1, 1 ), &net.winsockdata )) if( WSAStartup( MAKEWORD( 2, 0 ), &net.winsockdata ))
{ {
Con_DPrintf( S_ERROR "network initialization failed.\n" ); Con_DPrintf( S_ERROR "network initialization failed.\n" );
return; return;