summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/hle_ipc.cpp
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2018-07-14 15:13:16 +0200
committerDavid Marcec <dmarcecguzman@gmail.com>2018-07-14 15:13:16 +0200
commita7d6c0d6ea55fa11049a02ff639666796d773ac0 (patch)
tree1f204772087b70ae3ee53c23ce1eefbdd0f26d6d /src/core/hle/kernel/hle_ipc.cpp
parentMerge pull request #660 from Subv/depth_write (diff)
downloadyuzu-a7d6c0d6ea55fa11049a02ff639666796d773ac0.tar
yuzu-a7d6c0d6ea55fa11049a02ff639666796d773ac0.tar.gz
yuzu-a7d6c0d6ea55fa11049a02ff639666796d773ac0.tar.bz2
yuzu-a7d6c0d6ea55fa11049a02ff639666796d773ac0.tar.lz
yuzu-a7d6c0d6ea55fa11049a02ff639666796d773ac0.tar.xz
yuzu-a7d6c0d6ea55fa11049a02ff639666796d773ac0.tar.zst
yuzu-a7d6c0d6ea55fa11049a02ff639666796d773ac0.zip
Diffstat (limited to 'src/core/hle/kernel/hle_ipc.cpp')
-rw-r--r--src/core/hle/kernel/hle_ipc.cpp4
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) {
(sizeof(IPC::CommandHeader) + sizeof(IPC::HandleDescriptorHeader)) / sizeof(u32);
ASSERT_MSG(!handle_descriptor_header->send_current_pid, "Sending PID is not implemented");
- ASSERT_MSG(copy_objects.size() == handle_descriptor_header->num_handles_to_copy);
- ASSERT_MSG(move_objects.size() == handle_descriptor_header->num_handles_to_move);
+ ASSERT(copy_objects.size() == handle_descriptor_header->num_handles_to_copy);
+ ASSERT(move_objects.size() == handle_descriptor_header->num_handles_to_move);
// We don't make a distinction between copy and move handles when translating since HLE
// services don't deal with handles directly. However, the guest applications might check