return error in NetDll_WSARecvFrom so we don't wait on packets we won't be getting - fixes State of decay with other XBLA fixes already merged in canary
This commit is contained in:
parent
f6e2012e8c
commit
b6e1902579
|
@ -287,7 +287,9 @@ dword_result_t NetDll_WSARecvFrom(dword_t caller, dword_t socket,
|
||||||
//}
|
//}
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
// we're not going to be receiving packets any time soon
|
||||||
|
// return error so we don't wait on that - Cancerous
|
||||||
|
return -1;
|
||||||
}
|
}
|
||||||
DECLARE_XAM_EXPORT1(NetDll_WSARecvFrom, kNetworking, kStub);
|
DECLARE_XAM_EXPORT1(NetDll_WSARecvFrom, kNetworking, kStub);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue