diff options
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index fa61a5c7b..7a15eeba0 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -162,7 +162,7 @@ void ServiceFrameworkBase::ReportUnimplementedFunction(Kernel::HLERequestContext | |||
| 162 | if (Settings::values.use_auto_stub) { | 162 | if (Settings::values.use_auto_stub) { |
| 163 | LOG_WARNING(Service, "Using auto stub fallback!"); | 163 | LOG_WARNING(Service, "Using auto stub fallback!"); |
| 164 | IPC::ResponseBuilder rb{ctx, 2}; | 164 | IPC::ResponseBuilder rb{ctx, 2}; |
| 165 | rb.Push(RESULT_SUCCESS); | 165 | rb.Push(ResultSuccess); |
| 166 | } | 166 | } |
| 167 | } | 167 | } |
| 168 | 168 | ||
| @@ -200,7 +200,7 @@ ResultCode ServiceFrameworkBase::HandleSyncRequest(Kernel::KServerSession& sessi | |||
| 200 | case IPC::CommandType::TIPC_Close: { | 200 | case IPC::CommandType::TIPC_Close: { |
| 201 | session.Close(); | 201 | session.Close(); |
| 202 | IPC::ResponseBuilder rb{ctx, 2}; | 202 | IPC::ResponseBuilder rb{ctx, 2}; |
| 203 | rb.Push(RESULT_SUCCESS); | 203 | rb.Push(ResultSuccess); |
| 204 | return IPC::ERR_REMOTE_PROCESS_DEAD; | 204 | return IPC::ERR_REMOTE_PROCESS_DEAD; |
| 205 | } | 205 | } |
| 206 | case IPC::CommandType::ControlWithContext: | 206 | case IPC::CommandType::ControlWithContext: |
| @@ -228,7 +228,7 @@ ResultCode ServiceFrameworkBase::HandleSyncRequest(Kernel::KServerSession& sessi | |||
| 228 | ctx.WriteToOutgoingCommandBuffer(ctx.GetThread()); | 228 | ctx.WriteToOutgoingCommandBuffer(ctx.GetThread()); |
| 229 | } | 229 | } |
| 230 | 230 | ||
| 231 | return RESULT_SUCCESS; | 231 | return ResultSuccess; |
| 232 | } | 232 | } |
| 233 | 233 | ||
| 234 | /// Initialize Services | 234 | /// Initialize Services |