summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am
diff options
context:
space:
mode:
authorDavid <25727384+ogniK5377@users.noreply.github.com>2020-09-30 13:22:45 +0200
committerGitHub <noreply@github.com>2020-09-30 13:22:45 +0200
commitf7808f5658ba7ff0d8ea2b62350b4878ecb13672 (patch)
tree2e5ec11d9a5917399b3ba05a50c1aa711071bf96 /src/core/hle/service/am
parentMerge pull request #4733 from ReinUsesLisp/game-list-leak (diff)
parentcore: Mark GetInstance() as deprecated (diff)
downloadyuzu-f7808f5658ba7ff0d8ea2b62350b4878ecb13672.tar
yuzu-f7808f5658ba7ff0d8ea2b62350b4878ecb13672.tar.gz
yuzu-f7808f5658ba7ff0d8ea2b62350b4878ecb13672.tar.bz2
yuzu-f7808f5658ba7ff0d8ea2b62350b4878ecb13672.tar.lz
yuzu-f7808f5658ba7ff0d8ea2b62350b4878ecb13672.tar.xz
yuzu-f7808f5658ba7ff0d8ea2b62350b4878ecb13672.tar.zst
yuzu-f7808f5658ba7ff0d8ea2b62350b4878ecb13672.zip
Diffstat (limited to 'src/core/hle/service/am')
-rw-r--r--src/core/hle/service/am/applets/applets.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/am/applets/applets.cpp b/src/core/hle/service/am/applets/applets.cpp
index 4e0800f9a..2b626bb40 100644
--- a/src/core/hle/service/am/applets/applets.cpp
+++ b/src/core/hle/service/am/applets/applets.cpp
@@ -206,7 +206,8 @@ void AppletManager::SetDefaultAppletFrontendSet() {
void AppletManager::SetDefaultAppletsIfMissing() {
if (frontend.controller == nullptr) {
- frontend.controller = std::make_unique<Core::Frontend::DefaultControllerApplet>();
+ frontend.controller =
+ std::make_unique<Core::Frontend::DefaultControllerApplet>(system.ServiceManager());
}
if (frontend.e_commerce == nullptr) {