diff options
| author | 2019-06-26 19:07:34 -0400 | |
|---|---|---|
| committer | 2019-06-26 19:07:34 -0400 | |
| commit | bce4bfffb64683c1033a875d35885f4ea650c2a9 (patch) | |
| tree | 8225d45804534954a6fba289b7b1a291056b0bd2 /src/core/hle/service/service.cpp | |
| parent | pm: Implement pm:dmnt GetTitlePid (diff) | |
| download | yuzu-bce4bfffb64683c1033a875d35885f4ea650c2a9.tar.gz yuzu-bce4bfffb64683c1033a875d35885f4ea650c2a9.tar.xz yuzu-bce4bfffb64683c1033a875d35885f4ea650c2a9.zip | |
pm: Implement pm:shell and pm:dmnt GetApplicationPid
Returns the process ID of the current application or 0 if no app is running.
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 ec9d755b7..0c1af124b 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -242,7 +242,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system, | |||
| 242 | PCTL::InstallInterfaces(*sm); | 242 | PCTL::InstallInterfaces(*sm); |
| 243 | PCV::InstallInterfaces(*sm); | 243 | PCV::InstallInterfaces(*sm); |
| 244 | PlayReport::InstallInterfaces(*sm); | 244 | PlayReport::InstallInterfaces(*sm); |
| 245 | PM::InstallInterfaces(*sm); | 245 | PM::InstallInterfaces(system); |
| 246 | PSC::InstallInterfaces(*sm); | 246 | PSC::InstallInterfaces(*sm); |
| 247 | PSM::InstallInterfaces(*sm); | 247 | PSM::InstallInterfaces(*sm); |
| 248 | Set::InstallInterfaces(*sm); | 248 | Set::InstallInterfaces(*sm); |