summaryrefslogtreecommitdiff
path: root/src/core/hle/ipc.h
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-01-07 21:25:01 -0500
committerbunnei <bunneidev@gmail.com>2018-01-10 23:28:02 -0500
commitab86b80cac890399886efe1ed084e1cb7a3aacb4 (patch)
treebf2cf1b3fd0fec6675d898682a0b8eb42657abb0 /src/core/hle/ipc.h
parentba02f0deefcf3e748615cc00ad99bcae4d681fa3 (diff)
IPC: Corrected some definitions for the buffer C descriptor flags.
Diffstat (limited to 'src/core/hle/ipc.h')
-rw-r--r--src/core/hle/ipc.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/ipc.h b/src/core/hle/ipc.h
index c2f481624..ec08be0f4 100644
--- a/src/core/hle/ipc.h
+++ b/src/core/hle/ipc.h
@@ -48,8 +48,8 @@ struct CommandHeader {
enum class BufferDescriptorCFlag : u32 {
Disabled = 0,
- NoDescriptor = 1,
- TwoDesciptors = 2,
+ InlineDescriptor = 1,
+ OneDescriptor = 2,
};
union {