diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-17 17:37:26 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-01-17 17:37:26 +0100 |
commit | b588cbcb1dd1c4256c6d0011a424af9d888ecb20 (patch) | |
tree | 339ab61b05294a2be42b726e60babae5976a8d6c /src | |
parent | ipc: Implement domain command CloseVirtualHandle. (diff) | |
download | yuzu-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')
-rw-r--r-- | src/core/hle/kernel/hle_ipc.cpp | 5 |
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; } |