diff options
author | Lioncash <mathew1800@gmail.com> | 2018-08-01 23:08:41 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-08-01 23:08:44 +0200 |
commit | f77cfab516d716ab161825046a62b655ef285e21 (patch) | |
tree | 3805fb41a6640a4b55fb5f74c4bd8f93be94098c | |
parent | Merge pull request #885 from greggameplayer/R32-Float (diff) | |
download | yuzu-f77cfab516d716ab161825046a62b655ef285e21.tar yuzu-f77cfab516d716ab161825046a62b655ef285e21.tar.gz yuzu-f77cfab516d716ab161825046a62b655ef285e21.tar.bz2 yuzu-f77cfab516d716ab161825046a62b655ef285e21.tar.lz yuzu-f77cfab516d716ab161825046a62b655ef285e21.tar.xz yuzu-f77cfab516d716ab161825046a62b655ef285e21.tar.zst yuzu-f77cfab516d716ab161825046a62b655ef285e21.zip |
-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 @@ namespace Service::LM { -class Logger final : public ServiceFramework<Logger> { +class ILogger final : public ServiceFramework<ILogger> { public: - Logger() : ServiceFramework("Logger") { + ILogger() : ServiceFramework("ILogger") { static const FunctionInfo functions[] = { - {0x00000000, &Logger::Initialize, "Initialize"}, + {0x00000000, &ILogger::Initialize, "Initialize"}, {0x00000001, nullptr, "SetDestination"}, }; RegisterHandlers(functions); @@ -182,7 +182,7 @@ public: void OpenLogger(Kernel::HLERequestContext& ctx) { IPC::ResponseBuilder rb{ctx, 2, 0, 1}; rb.Push(RESULT_SUCCESS); - rb.PushIpcInterface<Logger>(); + rb.PushIpcInterface<ILogger>(); LOG_DEBUG(Service_LM, "called"); } |