mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-20 19:55:46 +00:00
hle: kernel: hle_ipc: Fix outgoing IPC response size calculation.
This commit is contained in:
parent
627eaf8c0e
commit
006a51c86b
3 changed files with 15 additions and 1 deletions
|
@ -108,6 +108,7 @@ public:
|
|||
header.type.Assign(ctx.GetCommandType());
|
||||
}
|
||||
|
||||
ctx.data_size = static_cast<u32>(raw_data_size);
|
||||
header.data_size.Assign(static_cast<u32>(raw_data_size));
|
||||
if (num_handles_to_copy || num_handles_to_move) {
|
||||
header.enable_handle_descriptor.Assign(1);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue