summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-17 17:37:26 +0100
committerbunnei <bunneidev@gmail.com>2018-01-17 17:37:26 +0100
commitb588cbcb1dd1c4256c6d0011a424af9d888ecb20 (patch)
tree339ab61b05294a2be42b726e60babae5976a8d6c /src/core/hle/kernel
parentipc: Implement domain command CloseVirtualHandle. (diff)
downloadyuzu-b588cbcb1dd1c4256c6d0011a424af9d888ecb20.tar
yuzu-b588cbcb1dd1c4256c6d0011a424af9d888ecb20.tar.gz
yuzu-b588cbcb1dd1c4256c6d0011a424af9d888ecb20.tar.bz2
yuzu-b588cbcb1dd1c4256c6d0011a424af9d888ecb20.tar.lz
yuzu-b588cbcb1dd1c4256c6d0011a424af9d888ecb20.tar.xz
yuzu-b588cbcb1dd1c4256c6d0011a424af9d888ecb20.tar.zst
yuzu-b588cbcb1dd1c4256c6d0011a424af9d888ecb20.zip
Diffstat (limited to 'src/core/hle/kernel')
-rw-r--r--src/core/hle/kernel/hle_ipc.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/hle/kernel/hle_ipc.cpp b/src/core/hle/kernel/hle_ipc.cpp
index 2ccc242f6..ac62a0d5a 100644
--- a/src/core/hle/kernel/hle_ipc.cpp
+++ b/src/core/hle/kernel/hle_ipc.cpp
@@ -104,8 +104,9 @@ void HLERequestContext::ParseCommandBuffer(u32_le* src_cmdbuf, bool incoming) {
data_payload_offset = rp.GetCurrentOffset();
- if (domain_message_header && domain_message_header->command ==
- IPC::DomainMessageHeader::CommandType::CloseVirtualHandle) {
+ if (domain_message_header &&
+ domain_message_header->command ==
+ IPC::DomainMessageHeader::CommandType::CloseVirtualHandle) {
// CloseVirtualHandle command does not have SFC* or any data
return;
}