Created attachment 3229[details]
NET_Sleep() socket tyep fixes
NET_Sleep() uses int type instead of SOCKET for highestfd and does incorrect casts for comparisons. While this would work on win32, it wouldn't do so on win64 because SOCKET type is actually pointer sized. Trivial fix is attached.
Created attachment 3229 [details] NET_Sleep() socket tyep fixes NET_Sleep() uses int type instead of SOCKET for highestfd and does incorrect casts for comparisons. While this would work on win32, it wouldn't do so on win64 because SOCKET type is actually pointer sized. Trivial fix is attached.