mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-27 16:25:36 +01:00
Linux uses EAGAIN instead of EWOULDBLOCK (only used on Windows)
This commit is contained in:
parent
ef4ac51170
commit
2c9109936c
@ -544,7 +544,7 @@ static int getNetErrorCode(int ret, std::string caller, bool isRW)
|
||||
return -30; // EISCONN
|
||||
case ERRORCODE(ENOTCONN):
|
||||
return -6; // EAGAIN
|
||||
case ERRORCODE(EWOULDBLOCK):
|
||||
case EITHER(WSAEWOULDBLOCK, EAGAIN):
|
||||
case ERRORCODE(EINPROGRESS):
|
||||
if(isRW){
|
||||
return -6; // EAGAIN
|
||||
|
Loading…
x
Reference in New Issue
Block a user