summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/hle_ipc.cpp
diff options
context:
space:
mode:
authormailwl <mailwl@gmail.com>2018-02-20 19:59:58 +0100
committermailwl <mailwl@gmail.com>2018-02-20 19:59:58 +0100
commit827152d1fd72d13b47b331f64455fc2a641877b1 (patch)
tree7233f6661549d2c0d1de8c037c7124f47b3f57b4 /src/core/hle/kernel/hle_ipc.cpp
parentIPC: add domain header to response if only it exists in request (diff)
downloadyuzu-827152d1fd72d13b47b331f64455fc2a641877b1.tar
yuzu-827152d1fd72d13b47b331f64455fc2a641877b1.tar.gz
yuzu-827152d1fd72d13b47b331f64455fc2a641877b1.tar.bz2
yuzu-827152d1fd72d13b47b331f64455fc2a641877b1.tar.lz
yuzu-827152d1fd72d13b47b331f64455fc2a641877b1.tar.xz
yuzu-827152d1fd72d13b47b331f64455fc2a641877b1.tar.zst
yuzu-827152d1fd72d13b47b331f64455fc2a641877b1.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/hle_ipc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/hle_ipc.cpp b/src/core/hle/kernel/hle_ipc.cpp
index 3b1f3154d..eef784f5e 100644
--- a/src/core/hle/kernel/hle_ipc.cpp
+++ b/src/core/hle/kernel/hle_ipc.cpp
@@ -198,7 +198,7 @@ ResultCode HLERequestContext::WriteToOutgoingCommandBuffer(u32_le* dst_cmdbuf, P
// TODO(Subv): Translate the X/A/B/W buffers.
- if (domain_message_header && Session()->IsDomain()) {
+ if (Session()->IsDomain() && domain_message_header) {
ASSERT(domain_message_header->num_objects == domain_objects.size());
// Write the domain objects to the command buffer, these go after the raw untranslated data.
// TODO(Subv): This completely ignores C buffers.