summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ldn/ldn.cpp
diff options
context:
space:
mode:
authorNarr the Reg <juangerman-13@hotmail.com>2023-11-20 23:53:33 +0100
committerGitHub <noreply@github.com>2023-11-20 23:53:33 +0100
commit8da5bd27e9d4fe5e850700039d79f77e52ba6aea (patch)
treef7092ca45b92aa83ef636cc13f970cd3561ba93e /src/core/hle/service/ldn/ldn.cpp
parentMerge pull request #12093 from t895/zip-intent (diff)
parentImplemented qlaunch version of the controller applet (diff)
downloadyuzu-8da5bd27e9d4fe5e850700039d79f77e52ba6aea.tar
yuzu-8da5bd27e9d4fe5e850700039d79f77e52ba6aea.tar.gz
yuzu-8da5bd27e9d4fe5e850700039d79f77e52ba6aea.tar.bz2
yuzu-8da5bd27e9d4fe5e850700039d79f77e52ba6aea.tar.lz
yuzu-8da5bd27e9d4fe5e850700039d79f77e52ba6aea.tar.xz
yuzu-8da5bd27e9d4fe5e850700039d79f77e52ba6aea.tar.zst
yuzu-8da5bd27e9d4fe5e850700039d79f77e52ba6aea.zip
Diffstat (limited to 'src/core/hle/service/ldn/ldn.cpp')
-rw-r--r--src/core/hle/service/ldn/ldn.cpp10
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