mirror of
https://github.com/xenia-project/xenia.git
synced 2025-12-06 07:12:03 +01:00
Fix XNetGetDebugXnAddr signature
This commit is contained in:
parent
6e0732b95b
commit
0c61244e91
|
|
@ -111,8 +111,10 @@ SHIM_CALL NetDll_XNetCleanup_shim(PPCContext* ppc_context,
|
||||||
SHIM_SET_RETURN_32(0);
|
SHIM_SET_RETURN_32(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
dword_result_t NetDll_XNetGetDebugXnAddr(lpunknown_t out_address) {
|
dword_result_t NetDll_XNetGetDebugXnAddr(dword_t caller,
|
||||||
|
lpunknown_t out_address) {
|
||||||
out_address.Zero(36);
|
out_address.Zero(36);
|
||||||
|
|
||||||
// 1 causes caller to gracefully return.
|
// 1 causes caller to gracefully return.
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue