Network: Fix TConnection related compiler issue

This commit is contained in:
Lion Kortlepel
2021-09-17 15:33:16 +02:00
parent e53f2d9877
commit 29a858e74a

View File

@@ -158,7 +158,7 @@ void TNetwork::TCPServerMain() {
CloseSocketProper(client.Socket);
#ifdef WIN32
CloseSocketProper(client);
CloseSocketProper(client.Socket);
WSACleanup();
#endif // WIN32
}