mirror of
https://github.com/azahar-emu/azahar.git
synced 2026-06-06 02:33:44 -04:00
fix: correct the response of SendToOther in soc:U
This commit is contained in:
parent
be0f096f48
commit
4fc09af613
1 changed files with 2 additions and 1 deletions
|
|
@ -1169,9 +1169,10 @@ void SOC_U::SendToOther(Kernel::HLERequestContext& ctx) {
|
|||
|
||||
LOG_SEND_RECV(Service_SOC, "called, fd={}, ret={}", socket_handle, static_cast<s32>(ret));
|
||||
|
||||
IPC::RequestBuilder rb = rp.MakeBuilder(2, 0);
|
||||
IPC::RequestBuilder rb = rp.MakeBuilder(2, 2);
|
||||
rb.Push(ResultSuccess);
|
||||
rb.Push(ret);
|
||||
rb.PushMappedBuffer(input_mapped_buff);
|
||||
}
|
||||
|
||||
s32 SOC_U::SendToImpl(SocketHolder& holder, u32 len, u32 flags, u32 addr_len,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue