diff options
| author | FrozenAra <macjordan02@googlemail.com> | 2023-11-01 01:09:33 +0100 |
|---|---|---|
| committer | FrozenAra <macjordan02@googlemail.com> | 2023-11-19 18:38:58 +0100 |
| commit | cb004d1ba1bde740ba10418ac3f3cfd2db8ffac7 (patch) | |
| tree | dfcff7952ed84cea825e1144284d82505ec09731 /src/core/hle/service/ldn | |
| parent | 4c16a1a26f3d35c5d3a57a6b1e988d3c3e07a932 (diff) | |
Implemented qlaunch version of the controller applet
Diffstat (limited to 'src/core/hle/service/ldn')
| -rw-r--r-- | src/core/hle/service/ldn/ldn.cpp | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/core/hle/service/ldn/ldn.cpp b/src/core/hle/service/ldn/ldn.cpp index 7927f8264..961f89a14 100644 --- a/src/core/hle/service/ldn/ldn.cpp +++ b/src/core/hle/service/ldn/ldn.cpp @@ -115,12 +115,20 @@ public: {400, nullptr, "InitializeSystem"}, {401, nullptr, "FinalizeSystem"}, {402, nullptr, "SetOperationMode"}, - {403, nullptr, "InitializeSystem2"}, + {403, &ISystemLocalCommunicationService::InitializeSystem2, "InitializeSystem2"}, }; // clang-format on RegisterHandlers(functions); } + +private: + void InitializeSystem2(HLERequestContext& ctx) { + LOG_WARNING(Service_LDN, "(STUBBED) called"); + + IPC::ResponseBuilder rb{ctx, 2}; + rb.Push(ResultSuccess); + } }; class IUserLocalCommunicationService final |
