Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix sysmenu test connection bug on Windows.
  • Loading branch information
Parlane committed Aug 31, 2013
1 parent 7ce3d84 commit c497d62
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Source/Core/Core/Src/IPC_HLE/WII_Socket.cpp
Expand Up @@ -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;
Expand Down

0 comments on commit c497d62

Please sign in to comment.