Switch type.

This commit is contained in:
Jean-Baptiste Perrier
2021-01-24 11:39:59 +01:00
parent 3ab54bd7e1
commit 9b2c940896
4 changed files with 4 additions and 4 deletions

View File

@@ -203,7 +203,7 @@ bool Win32Network::BindSocket(NetworkSocket& socket, NetworkEndPoint& endPoint)
return false;
}
bool Win32Network::Listen(NetworkSocket& socket, int32 queueSize)
bool Win32Network::Listen(NetworkSocket& socket, uint16 queueSize)
{
if (listen(*(SOCKET*)socket.Data, (int32)queueSize) == SOCKET_ERROR)
{