summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applets/controller.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2021-04-17 20:37:17 +0200
committerGitHub <noreply@github.com>2021-04-17 20:37:17 +0200
commitce921e0f2619fc52a70e5545711e284b320328d4 (patch)
treed5874637e6426893df41b7080ae9287836cc9edc /src/core/hle/service/am/applets/controller.cpp
parentMerge pull request #6125 from ogniK5377/nvdec-close-dev (diff)
parentapplets: Send focus state change message on applet state change (diff)
downloadyuzu-ce921e0f2619fc52a70e5545711e284b320328d4.tar
yuzu-ce921e0f2619fc52a70e5545711e284b320328d4.tar.gz
yuzu-ce921e0f2619fc52a70e5545711e284b320328d4.tar.bz2
yuzu-ce921e0f2619fc52a70e5545711e284b320328d4.tar.lz
yuzu-ce921e0f2619fc52a70e5545711e284b320328d4.tar.xz
yuzu-ce921e0f2619fc52a70e5545711e284b320328d4.tar.zst
yuzu-ce921e0f2619fc52a70e5545711e284b320328d4.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/am/applets/controller.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/am/applets/controller.cpp b/src/core/hle/service/am/applets/controller.cpp
index a33f05f97..218c8d1e4 100644
--- a/src/core/hle/service/am/applets/controller.cpp
+++ b/src/core/hle/service/am/applets/controller.cpp
@@ -47,7 +47,7 @@ static Core::Frontend::ControllerParameters ConvertToFrontendParameters(
Controller::Controller(Core::System& system_, LibraryAppletMode applet_mode_,
const Core::Frontend::ControllerApplet& frontend_)
- : Applet{system_.Kernel()}, applet_mode{applet_mode_}, frontend{frontend_}, system{system_} {}
+ : Applet{system_, applet_mode_}, frontend{frontend_}, system{system_} {}
Controller::~Controller() = default;