diff options
author | Zach Hilman <zachhilman@gmail.com> | 2019-06-06 19:46:36 -0400 |
---|---|---|
committer | Zach Hilman <zachhilman@gmail.com> | 2019-06-24 20:07:10 -0400 |
commit | 3c4238657d326a7d85cbc9152ca16483383c20e7 (patch) | |
tree | 2b71e5603db308fbe6ec27b55fa64153602c2675 /src/core/hle/service/service.cpp | |
parent | 01ff38cca80c5cf7e64494b129dde8d7c8ebbee5 (diff) |
applets: Pass current process title ID to applets
Avoids using system accessor to get current process in applet code.
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r-- | src/core/hle/service/service.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index b2954eb343..dfffcb5109 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -204,7 +204,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system, SM::ServiceManager::InstallInterfaces(sm); Account::InstallInterfaces(system); - AM::InstallInterfaces(*sm, nv_flinger); + AM::InstallInterfaces(*sm, nv_flinger, system); AOC::InstallInterfaces(*sm); APM::InstallInterfaces(*sm); ARP::InstallInterfaces(*sm); |