From c497d6283668f14a12b585a0e67bde9222ba76ed Mon Sep 17 00:00:00 2001 From: Matthew Parlane Date: Sat, 31 Aug 2013 16:44:28 +1200 Subject: [PATCH] Fix sysmenu test connection bug on Windows. --- Source/Core/Core/Src/IPC_HLE/WII_Socket.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Core/Core/Src/IPC_HLE/WII_Socket.cpp b/Source/Core/Core/Src/IPC_HLE/WII_Socket.cpp index 73fa09e485..4939499b1e 100644 --- a/Source/Core/Core/Src/IPC_HLE/WII_Socket.cpp +++ b/Source/Core/Core/Src/IPC_HLE/WII_Socket.cpp @@ -417,8 +417,8 @@ void WiiSocket::update(bool read, bool write, bool except) // Act as non blocking when SO_MSG_NONBLOCK is specified forceNonBlock = ((flags & SO_MSG_NONBLOCK) == SO_MSG_NONBLOCK); - // send/sendto only handles PEEK - flags &= SO_MSG_PEEK | SO_MSG_OOB; + // send/sendto only handles MSG_OOB + flags &= SO_MSG_OOB; u8 destaddr[28]; struct sockaddr_in* addr = (struct sockaddr_in*)&destaddr;