diff options
| -rw-r--r-- | src/core/hle/service/lm/lm.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/lm/lm.cpp b/src/core/hle/service/lm/lm.cpp index b497376d7..2e99ddf51 100644 --- a/src/core/hle/service/lm/lm.cpp +++ b/src/core/hle/service/lm/lm.cpp | |||
| @@ -13,11 +13,11 @@ | |||
| 13 | 13 | ||
| 14 | namespace Service::LM { | 14 | namespace Service::LM { |
| 15 | 15 | ||
| 16 | class Logger final : public ServiceFramework<Logger> { | 16 | class ILogger final : public ServiceFramework<ILogger> { |
| 17 | public: | 17 | public: |
| 18 | Logger() : ServiceFramework("Logger") { | 18 | ILogger() : ServiceFramework("ILogger") { |
| 19 | static const FunctionInfo functions[] = { | 19 | static const FunctionInfo functions[] = { |
| 20 | {0x00000000, &Logger::Initialize, "Initialize"}, | 20 | {0x00000000, &ILogger::Initialize, "Initialize"}, |
| 21 | {0x00000001, nullptr, "SetDestination"}, | 21 | {0x00000001, nullptr, "SetDestination"}, |
| 22 | }; | 22 | }; |
| 23 | RegisterHandlers(functions); | 23 | RegisterHandlers(functions); |
| @@ -182,7 +182,7 @@ public: | |||
| 182 | void OpenLogger(Kernel::HLERequestContext& ctx) { | 182 | void OpenLogger(Kernel::HLERequestContext& ctx) { |
| 183 | IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | 183 | IPC::ResponseBuilder rb{ctx, 2, 0, 1}; |
| 184 | rb.Push(RESULT_SUCCESS); | 184 | rb.Push(RESULT_SUCCESS); |
| 185 | rb.PushIpcInterface<Logger>(); | 185 | rb.PushIpcInterface<ILogger>(); |
| 186 | 186 | ||
| 187 | LOG_DEBUG(Service_LM, "called"); | 187 | LOG_DEBUG(Service_LM, "called"); |
| 188 | } | 188 | } |