summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index dc30702c6..5b91089cf 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -144,10 +144,12 @@ ResultCode ServiceFrameworkBase::HandleSyncRequest(Kernel::HLERequestContext& co
144 rb.Push(RESULT_SUCCESS); 144 rb.Push(RESULT_SUCCESS);
145 return ResultCode(ErrorModule::HIPC, ErrorDescription::RemoteProcessDead); 145 return ResultCode(ErrorModule::HIPC, ErrorDescription::RemoteProcessDead);
146 } 146 }
147 case IPC::CommandType::ControlWithContext:
147 case IPC::CommandType::Control: { 148 case IPC::CommandType::Control: {
148 Core::System::GetInstance().ServiceManager().InvokeControlRequest(context); 149 Core::System::GetInstance().ServiceManager().InvokeControlRequest(context);
149 break; 150 break;
150 } 151 }
152 case IPC::CommandType::RequestWithContext:
151 case IPC::CommandType::Request: { 153 case IPC::CommandType::Request: {
152 InvokeRequest(context); 154 InvokeRequest(context);
153 break; 155 break;