From dd8b0e3c3ff6175a2d8f6832cf073dbeb8c8e694 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Lam?= Date: Mon, 6 Mar 2017 00:38:13 +0100 Subject: [PATCH] IOS/ES: Fix logging type for dumping unknown ioctlvs --- Source/Core/Core/IOS/ES/ES.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/IOS/ES/ES.cpp b/Source/Core/Core/IOS/ES/ES.cpp index 0a65a21318..5b0f49c933 100644 --- a/Source/Core/Core/IOS/ES/ES.cpp +++ b/Source/Core/Core/IOS/ES/ES.cpp @@ -442,7 +442,7 @@ IPCCommandResult ES::IOCtlV(const IOCtlVRequest& request) case IOCTL_ES_DIGETTICKETVIEW: return DIGetTicketView(request); default: - request.DumpUnknown(GetDeviceName(), LogTypes::IOS); + request.DumpUnknown(GetDeviceName(), LogTypes::IOS_ES); break; }