diff options
author | Lioncash <mathew1800@gmail.com> | 2020-09-26 01:13:10 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-09-26 01:23:20 +0200 |
commit | 3e4a0a13cb2f2e02bdb623d763a63a71c2c5da7a (patch) | |
tree | d9c75f026df874c9f3889bd21a7df45e7afa9221 /src/core/hle | |
parent | Merge pull request #4717 from lioncash/debug (diff) | |
download | yuzu-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/hle')
-rw-r--r-- | src/core/hle/service/am/applets/applets.cpp | 3 |
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) { |