From 1c6c2564d51ac3b7a64470ebf5c4cc1510070e32 Mon Sep 17 00:00:00 2001 From: StapleButter Date: Sun, 21 May 2017 20:43:40 +0200 Subject: blarg --- src/wx/Platform.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/wx/Platform.cpp b/src/wx/Platform.cpp index 95da1bc..8fc05c6 100644 --- a/src/wx/Platform.cpp +++ b/src/wx/Platform.cpp @@ -55,7 +55,7 @@ u8 PacketBuffer[2048]; bool MP_Init() { - BOOL opt_true = TRUE; + int opt_true = 1; int res; #ifdef __WXMSW__ @@ -72,7 +72,7 @@ bool MP_Init() return false; } - res = setsockopt(MPSocket, SOL_SOCKET, SO_REUSEADDR, (const char*)&opt_true, sizeof(BOOL)); + res = setsockopt(MPSocket, SOL_SOCKET, SO_REUSEADDR, (const char*)&opt_true, sizeof(int)); if (res < 0) { closesocket(MPSocket); -- cgit v1.2.3