aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/lm/lm.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2017-10-15 01:24:22 -0400
committerbunnei <bunneidev@gmail.com>2017-10-15 01:24:22 -0400
commit4fb1b24d68e140230da612d464a5edc226860946 (patch)
treeed6cc24d62caf4476737508de317908a6cb23e90 /src/core/hle/service/lm/lm.cpp
parent746c2a3ae769c6172700e4f9e10ba01fa0df4ccb (diff)
hle: Implement ConvertSessionToDomain, various cleanups.
Diffstat (limited to 'src/core/hle/service/lm/lm.cpp')
-rw-r--r--src/core/hle/service/lm/lm.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/core/hle/service/lm/lm.cpp b/src/core/hle/service/lm/lm.cpp
index 3c5fa7de3..d66ac55ca 100644
--- a/src/core/hle/service/lm/lm.cpp
+++ b/src/core/hle/service/lm/lm.cpp
@@ -18,7 +18,7 @@ void InstallInterfaces(SM::ServiceManager& service_manager) {
* Inputs:
* 0: 0x00000000
* Outputs:
- * 1: ResultCode
+ * 0: ResultCode
*/
void LM::Initialize(Kernel::HLERequestContext& ctx) {
IPC::RequestBuilder rb{ctx, 1};
@@ -29,10 +29,6 @@ void LM::Initialize(Kernel::HLERequestContext& ctx) {
LM::LM() : ServiceFramework("lm") {
static const FunctionInfo functions[] = {
{0x00000000, &LM::Initialize, "Initialize"},
- {0x00000001, nullptr, "Unknown2"},
- {0x00000002, nullptr, "Unknown3"},
- {0x00000003, nullptr, "Unknown4"},
- {0x00000004, nullptr, "Unknown5"},
};
RegisterHandlers(functions);
}