summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/hle/service/lm/lm.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/service/lm/lm.cpp b/src/core/hle/service/lm/lm.cpp
index e85a8bdb9..d882f843b 100644
--- a/src/core/hle/service/lm/lm.cpp
+++ b/src/core/hle/service/lm/lm.cpp
@@ -16,6 +16,7 @@ public:
16 Logger() : ServiceFramework("Logger") { 16 Logger() : ServiceFramework("Logger") {
17 static const FunctionInfo functions[] = { 17 static const FunctionInfo functions[] = {
18 {0x00000000, &Logger::Log, "Log"}, 18 {0x00000000, &Logger::Log, "Log"},
19 {0x00000001, nullptr, "SetDestination"},
19 }; 20 };
20 RegisterHandlers(functions); 21 RegisterHandlers(functions);
21 } 22 }