mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-27 16:25:36 +01:00
getNetErrorCode on Linux should not display anything if ret >= 0
This commit is contained in:
parent
40e6e9b9fa
commit
d5dd80931a
@ -538,6 +538,9 @@ static int getNetErrorCode(int ret, std::string caller, bool isRW)
|
||||
return -1;
|
||||
}
|
||||
#else
|
||||
if (ret >= 0)
|
||||
return ret;
|
||||
|
||||
WARN_LOG(WII_IPC_NET, "%s failed with error %d: %s, ret= %d",
|
||||
caller.c_str(), 0x1337, "hmm", ret);
|
||||
return ret;
|
||||
|
Loading…
x
Reference in New Issue
Block a user