diff options
| author | 2018-01-17 11:37:26 -0500 | |
|---|---|---|
| committer | 2018-01-17 11:37:26 -0500 | |
| commit | b588cbcb1dd1c4256c6d0011a424af9d888ecb20 (patch) | |
| tree | 339ab61b05294a2be42b726e60babae5976a8d6c /src | |
| parent | ipc: Implement domain command CloseVirtualHandle. (diff) | |
| download | yuzu-b588cbcb1dd1c4256c6d0011a424af9d888ecb20.tar.gz yuzu-b588cbcb1dd1c4256c6d0011a424af9d888ecb20.tar.xz yuzu-b588cbcb1dd1c4256c6d0011a424af9d888ecb20.zip | |
hle_ipc: Clang format.
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) { | |||
| 104 | 104 | ||
| 105 | data_payload_offset = rp.GetCurrentOffset(); | 105 | data_payload_offset = rp.GetCurrentOffset(); |
| 106 | 106 | ||
| 107 | if (domain_message_header && domain_message_header->command == | 107 | if (domain_message_header && |
| 108 | IPC::DomainMessageHeader::CommandType::CloseVirtualHandle) { | 108 | domain_message_header->command == |
| 109 | IPC::DomainMessageHeader::CommandType::CloseVirtualHandle) { | ||
| 109 | // CloseVirtualHandle command does not have SFC* or any data | 110 | // CloseVirtualHandle command does not have SFC* or any data |
| 110 | return; | 111 | return; |
| 111 | } | 112 | } |