]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - lhnet.c
fix a display issue with warpzone decals I caused in my last change
[xonotic/darkplaces.git] / lhnet.c
diff --git a/lhnet.c b/lhnet.c
index aa6cbc94153b5f6c9f65f8960ed835515a61ce63..99b9f144f941d9a3c1459c0ac781e1130c901773 100644 (file)
--- a/lhnet.c
+++ b/lhnet.c
@@ -2,9 +2,6 @@
 // Written by Forest Hale 2003-06-15 and placed into public domain.
 
 #ifdef WIN32
-#ifdef _MSC_VER
-#pragma comment(lib, "ws2_32.lib")
-#endif
 # ifdef SUPPORTIPV6
 // Windows XP or higher is required for getaddrinfo, but the inclusion of wspiapi provides fallbacks for older versions
 # define _WIN32_WINNT 0x0501
@@ -839,11 +836,7 @@ void LHNET_SleepUntilPacket_Microseconds(int microseconds)
                {
                        if (lastfd < s->inetsocket)
                                lastfd = s->inetsocket;
-#ifdef WIN32
-                       FD_SET((int)s->inetsocket, &fdreadset);
-#else
                        FD_SET((unsigned int)s->inetsocket, &fdreadset);
-#endif
                }
        }
        tv.tv_sec = microseconds / 1000000;