From 6dcde031dc2133497e6e17ea2c727b919db1f0b4 Mon Sep 17 00:00:00 2001 From: Glenn Fiedler Date: Tue, 26 Dec 2023 13:31:37 -0500 Subject: [PATCH] try uint32_t --- netcode.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/netcode.c b/netcode.c index f893f1c..e975614 100755 --- a/netcode.c +++ b/netcode.c @@ -581,9 +581,9 @@ void netcode_term() // ---------------------------------------------------------------- #if NETCODE_PLATFORM == NETCODE_PLATFORM_WINDOWS -typedef uint64_t netcode_socket_handle_t; -#else // #if NETCODE_PLATFORM == NETCODE_PLATFORM_WINDOWS typedef uint32_t netcode_socket_handle_t; +#else // #if NETCODE_PLATFORM == NETCODE_PLATFORM_WINDOWS +typedef size_t netcode_socket_handle_t; #endif // #if NETCODE_PLATFORM == NETCODe_PLATFORM_WINDOWS struct netcode_socket_t