aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/ipc_helpers.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-01-07 09:59:38 -0500
committerbunnei <bunneidev@gmail.com>2018-01-07 17:11:58 -0500
commitba2ffd7b8112d6dccbbecb1ba2438ce4c53b4fbe (patch)
treec82f2f1a9fe8aa2cc07c3a558ad4a4d5ca00b0e0 /src/core/hle/ipc_helpers.h
parent5f41477f9cadfa072150917d5a725904ece0771e (diff)
IPC: Take the number of domain objects as a parameter in MakeBuilder.
Diffstat (limited to 'src/core/hle/ipc_helpers.h')
-rw-r--r--src/core/hle/ipc_helpers.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/core/hle/ipc_helpers.h b/src/core/hle/ipc_helpers.h
index b58e33a69..40e6c4897 100644
--- a/src/core/hle/ipc_helpers.h
+++ b/src/core/hle/ipc_helpers.h
@@ -205,12 +205,14 @@ public:
}
RequestBuilder MakeBuilder(u32 normal_params_size, u32 num_handles_to_copy,
- u32 num_handles_to_move, bool validate_header = true) {
+ u32 num_handles_to_move, u32 num_domain_objects,
+ bool validate_header = true) {
if (validate_header) {
ValidateHeader();
}
- return {*context, normal_params_size, num_handles_to_copy, num_handles_to_move};
+ return {*context, normal_params_size, num_handles_to_copy, num_handles_to_move,
+ num_domain_objects};
}
template <typename T>