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); }