mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-06-05 15:25:02 -06:00
fix: correct the response of SendToOther in soc:U
This commit is contained in:
parent
be0f096f48
commit
60661c3b8b
@ -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));
|
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(ResultSuccess);
|
||||||
rb.Push(ret);
|
rb.Push(ret);
|
||||||
|
rb.PushMappedBuffer(input_mapped_buff);
|
||||||
}
|
}
|
||||||
|
|
||||||
s32 SOC_U::SendToImpl(SocketHolder& holder, u32 len, u32 flags, u32 addr_len,
|
s32 SOC_U::SendToImpl(SocketHolder& holder, u32 len, u32 flags, u32 addr_len,
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user