Prevented net send errors from triggering an entire host error

This commit is contained in:
Jonathan Poncelet 2019-04-01 20:17:13 +01:00
parent 77b23eec9f
commit 60a1c4f0cc
1 changed files with 2 additions and 2 deletions

View File

@ -1412,7 +1412,7 @@ void NET_SendPacketEx( netsrc_t sock, size_t length, const void *data, netadr_t
}
else
{
Host_Error( "NET_SendPacket: %s to %s\n", NET_ErrorString(), NET_AdrToString( to ));
Con_Printf( S_ERROR "NET_SendPacket: %s to %s\n", NET_ErrorString(), NET_AdrToString( to ));
}
}
@ -2701,4 +2701,4 @@ void HTTP_Shutdown( void )
}
http.last_server = 0;
}
}