1
0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2025-03-30 05:50:07 +00:00

lm: Add missing function entry to Logger's function table

This commit is contained in:
Lioncash 2018-07-25 22:25:59 -04:00
parent d245610939
commit 8650be1020

@ -16,6 +16,7 @@ public:
Logger() : ServiceFramework("Logger") { Logger() : ServiceFramework("Logger") {
static const FunctionInfo functions[] = { static const FunctionInfo functions[] = {
{0x00000000, &Logger::Log, "Log"}, {0x00000000, &Logger::Log, "Log"},
{0x00000001, nullptr, "SetDestination"},
}; };
RegisterHandlers(functions); RegisterHandlers(functions);
} }