summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/lm/lm.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-26 04:25:59 +0200
committerLioncash <mathew1800@gmail.com>2018-07-26 04:26:32 +0200
commit8650be10209fb384fd131e866f24d8218cb0d6c9 (patch)
tree266708b42e742f067ec381f477580a236763d4d5 /src/core/hle/service/lm/lm.cpp
parentMerge pull request #820 from lioncash/es (diff)
downloadyuzu-8650be10209fb384fd131e866f24d8218cb0d6c9.tar
yuzu-8650be10209fb384fd131e866f24d8218cb0d6c9.tar.gz
yuzu-8650be10209fb384fd131e866f24d8218cb0d6c9.tar.bz2
yuzu-8650be10209fb384fd131e866f24d8218cb0d6c9.tar.lz
yuzu-8650be10209fb384fd131e866f24d8218cb0d6c9.tar.xz
yuzu-8650be10209fb384fd131e866f24d8218cb0d6c9.tar.zst
yuzu-8650be10209fb384fd131e866f24d8218cb0d6c9.zip
Diffstat (limited to '')
-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:
Logger() : ServiceFramework("Logger") {
static const FunctionInfo functions[] = {
{0x00000000, &Logger::Log, "Log"},
+ {0x00000001, nullptr, "SetDestination"},
};
RegisterHandlers(functions);
}