summaryrefslogtreecommitdiffstats
path: root/src/core/frontend/applets
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-09-26 01:13:10 +0200
committerLioncash <mathew1800@gmail.com>2020-09-26 01:23:20 +0200
commit3e4a0a13cb2f2e02bdb623d763a63a71c2c5da7a (patch)
treed9c75f026df874c9f3889bd21a7df45e7afa9221 /src/core/frontend/applets
parentMerge pull request #4717 from lioncash/debug (diff)
downloadyuzu-3e4a0a13cb2f2e02bdb623d763a63a71c2c5da7a.tar
yuzu-3e4a0a13cb2f2e02bdb623d763a63a71c2c5da7a.tar.gz
yuzu-3e4a0a13cb2f2e02bdb623d763a63a71c2c5da7a.tar.bz2
yuzu-3e4a0a13cb2f2e02bdb623d763a63a71c2c5da7a.tar.lz
yuzu-3e4a0a13cb2f2e02bdb623d763a63a71c2c5da7a.tar.xz
yuzu-3e4a0a13cb2f2e02bdb623d763a63a71c2c5da7a.tar.zst
yuzu-3e4a0a13cb2f2e02bdb623d763a63a71c2c5da7a.zip
Diffstat (limited to 'src/core/frontend/applets')
-rw-r--r--src/core/frontend/applets/controller.cpp8
-rw-r--r--src/core/frontend/applets/controller.h8
2 files changed, 12 insertions, 4 deletions
diff --git a/src/core/frontend/applets/controller.cpp b/src/core/frontend/applets/controller.cpp
index 4505da758..c5d65f2d0 100644
--- a/src/core/frontend/applets/controller.cpp
+++ b/src/core/frontend/applets/controller.cpp
@@ -4,7 +4,6 @@
#include "common/assert.h"
#include "common/logging/log.h"
-#include "core/core.h"
#include "core/frontend/applets/controller.h"
#include "core/hle/service/hid/controllers/npad.h"
#include "core/hle/service/hid/hid.h"
@@ -14,6 +13,9 @@ namespace Core::Frontend {
ControllerApplet::~ControllerApplet() = default;
+DefaultControllerApplet::DefaultControllerApplet(Service::SM::ServiceManager& service_manager_)
+ : service_manager{service_manager_} {}
+
DefaultControllerApplet::~DefaultControllerApplet() = default;
void DefaultControllerApplet::ReconfigureControllers(std::function<void()> callback,
@@ -21,9 +23,7 @@ void DefaultControllerApplet::ReconfigureControllers(std::function<void()> callb
LOG_INFO(Service_HID, "called, deducing the best configuration based on the given parameters!");
auto& npad =
- Core::System::GetInstance()
- .ServiceManager()
- .GetService<Service::HID::Hid>("hid")
+ service_manager.GetService<Service::HID::Hid>("hid")
->GetAppletResource()
->GetController<Service::HID::Controller_NPad>(Service::HID::HidController::NPad);
diff --git a/src/core/frontend/applets/controller.h b/src/core/frontend/applets/controller.h
index a227f15cd..3e49cdbb9 100644
--- a/src/core/frontend/applets/controller.h
+++ b/src/core/frontend/applets/controller.h
@@ -8,6 +8,10 @@
#include "common/common_types.h"
+namespace Service::SM {
+class ServiceManager;
+}
+
namespace Core::Frontend {
using BorderColor = std::array<u8, 4>;
@@ -39,10 +43,14 @@ public:
class DefaultControllerApplet final : public ControllerApplet {
public:
+ explicit DefaultControllerApplet(Service::SM::ServiceManager& service_manager_);
~DefaultControllerApplet() override;
void ReconfigureControllers(std::function<void()> callback,
ControllerParameters parameters) const override;
+
+private:
+ Service::SM::ServiceManager& service_manager;
};
} // namespace Core::Frontend