From c02573feac02037169a06869903b466004f1f8f9 Mon Sep 17 00:00:00 2001 From: greggameplayer <33609333+greggameplayer@users.noreply.github.com> Date: Sun, 27 May 2018 02:14:25 +0200 Subject: [PATCH] add some CommandType --- src/core/hle/ipc.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/core/hle/ipc.h b/src/core/hle/ipc.h index c9257de776..eaa5395ac4 100644 --- a/src/core/hle/ipc.h +++ b/src/core/hle/ipc.h @@ -29,7 +29,10 @@ enum class ControlCommand : u32 { }; enum class CommandType : u32 { + Invalid = 0, + LegacyRequest = 1, Close = 2, + LegacyControl = 3, Request = 4, Control = 5, RequestWithContext = 6,