diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/kernel/hle_ipc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/hle_ipc.cpp b/src/core/hle/kernel/hle_ipc.cpp index 609cdbff2..2532dd450 100644 --- a/src/core/hle/kernel/hle_ipc.cpp +++ b/src/core/hle/kernel/hle_ipc.cpp | |||
| @@ -214,8 +214,8 @@ ResultCode HLERequestContext::WriteToOutgoingCommandBuffer(Thread& thread) { | |||
| 214 | (sizeof(IPC::CommandHeader) + sizeof(IPC::HandleDescriptorHeader)) / sizeof(u32); | 214 | (sizeof(IPC::CommandHeader) + sizeof(IPC::HandleDescriptorHeader)) / sizeof(u32); |
| 215 | ASSERT_MSG(!handle_descriptor_header->send_current_pid, "Sending PID is not implemented"); | 215 | ASSERT_MSG(!handle_descriptor_header->send_current_pid, "Sending PID is not implemented"); |
| 216 | 216 | ||
| 217 | ASSERT_MSG(copy_objects.size() == handle_descriptor_header->num_handles_to_copy); | 217 | ASSERT(copy_objects.size() == handle_descriptor_header->num_handles_to_copy); |
| 218 | ASSERT_MSG(move_objects.size() == handle_descriptor_header->num_handles_to_move); | 218 | ASSERT(move_objects.size() == handle_descriptor_header->num_handles_to_move); |
| 219 | 219 | ||
| 220 | // We don't make a distinction between copy and move handles when translating since HLE | 220 | // We don't make a distinction between copy and move handles when translating since HLE |
| 221 | // services don't deal with handles directly. However, the guest applications might check | 221 | // services don't deal with handles directly. However, the guest applications might check |