diff options
author | Lioncash <mathew1800@gmail.com> | 2018-07-25 22:25:59 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-07-25 22:26:32 -0400 |
commit | 8650be10209fb384fd131e866f24d8218cb0d6c9 (patch) | |
tree | 266708b42e742f067ec381f477580a236763d4d5 /src | |
parent | d245610939219a3631a9a1850ffd8a504ce7d9d8 (diff) |
lm: Add missing function entry to Logger's function table
Diffstat (limited to 'src')
-rw-r--r-- | src/core/hle/service/lm/lm.cpp | 1 |
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); } |