diff options
| author | gdkchan <gab.dark.100@gmail.com> | 2018-01-22 17:27:55 -0300 |
|---|---|---|
| committer | gdkchan <gab.dark.100@gmail.com> | 2018-01-22 17:27:55 -0300 |
| commit | 832009bfdb360a9700c1d367ecfe0f84e32264a7 (patch) | |
| tree | 55b40ec33c4799110a4b01f4115f925aac912c5f /src/core/hle/service/hid/hid.cpp | |
| parent | 07355cf7cc114d27c34d2b61a35f929a6db3f8fb (diff) | |
Stub OpenAudioOut and fix a issue with HID IAppletResource being created more than once
Diffstat (limited to 'src/core/hle/service/hid/hid.cpp')
| -rw-r--r-- | src/core/hle/service/hid/hid.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp index be7a6ff65..d99e9c505 100644 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp @@ -162,8 +162,13 @@ public: ~Hid() = default; private: + Kernel::SharedPtr<Kernel::ClientPort> client_port; + void CreateAppletResource(Kernel::HLERequestContext& ctx) { - auto client_port = std::make_shared<IAppletResource>()->CreatePort(); + if (client_port == nullptr) { + client_port = std::make_shared<IAppletResource>()->CreatePort(); + } + auto session = client_port->Connect(); if (session.Succeeded()) { LOG_DEBUG(Service, "called, initialized IAppletResource -> session=%u", |
