mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-27 11:48:42 +00:00
getNetErrorCode on Linux should not display anything if ret >= 0
This commit is contained in:
parent
40e6e9b9fa
commit
d5dd80931a
1 changed files with 3 additions and 0 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue