From ab86b80cac890399886efe1ed084e1cb7a3aacb4 Mon Sep 17 00:00:00 2001 From: Subv Date: Sun, 7 Jan 2018 21:25:01 -0500 Subject: IPC: Corrected some definitions for the buffer C descriptor flags. --- src/core/hle/kernel/hle_ipc.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/core/hle/kernel/hle_ipc.cpp') diff --git a/src/core/hle/kernel/hle_ipc.cpp b/src/core/hle/kernel/hle_ipc.cpp index 1c6adb4a0..ee47c9654 100644 --- a/src/core/hle/kernel/hle_ipc.cpp +++ b/src/core/hle/kernel/hle_ipc.cpp @@ -83,7 +83,10 @@ void HLERequestContext::ParseCommandBuffer(u32_le* src_cmdbuf, bool incoming) { } if (command_header->buf_c_descriptor_flags != IPC::CommandHeader::BufferDescriptorCFlag::Disabled) { - UNIMPLEMENTED(); + if (command_header->buf_c_descriptor_flags != + IPC::CommandHeader::BufferDescriptorCFlag::OneDescriptor) { + UNIMPLEMENTED(); + } } // Padding to align to 16 bytes -- cgit v1.2.3