diff options
| author | 2022-06-26 18:48:12 -0500 | |
|---|---|---|
| committer | 2022-06-28 19:22:46 -0500 | |
| commit | c0264d212196481553df05df4a4b94743efa07f1 (patch) | |
| tree | d0c399d3343fba5df84d563762564fa4aa4d6906 /src/core/hle/service/service.cpp | |
| parent | Merge pull request #8512 from german77/nnResult (diff) | |
| download | yuzu-c0264d212196481553df05df4a4b94743efa07f1.tar.gz yuzu-c0264d212196481553df05df4a4b94743efa07f1.tar.xz yuzu-c0264d212196481553df05df4a4b94743efa07f1.zip | |
service: ptm: Rewrite PSM and add TS
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index 318009e4f..c64291e7f 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -58,7 +58,7 @@ | |||
| 58 | #include "core/hle/service/pm/pm.h" | 58 | #include "core/hle/service/pm/pm.h" |
| 59 | #include "core/hle/service/prepo/prepo.h" | 59 | #include "core/hle/service/prepo/prepo.h" |
| 60 | #include "core/hle/service/psc/psc.h" | 60 | #include "core/hle/service/psc/psc.h" |
| 61 | #include "core/hle/service/ptm/psm.h" | 61 | #include "core/hle/service/ptm/ptm.h" |
| 62 | #include "core/hle/service/service.h" | 62 | #include "core/hle/service/service.h" |
| 63 | #include "core/hle/service/set/settings.h" | 63 | #include "core/hle/service/set/settings.h" |
| 64 | #include "core/hle/service/sm/sm.h" | 64 | #include "core/hle/service/sm/sm.h" |
| @@ -287,7 +287,7 @@ Services::Services(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system | |||
| 287 | PlayReport::InstallInterfaces(*sm, system); | 287 | PlayReport::InstallInterfaces(*sm, system); |
| 288 | PM::InstallInterfaces(system); | 288 | PM::InstallInterfaces(system); |
| 289 | PSC::InstallInterfaces(*sm, system); | 289 | PSC::InstallInterfaces(*sm, system); |
| 290 | PSM::InstallInterfaces(*sm, system); | 290 | PTM::InstallInterfaces(*sm, system); |
| 291 | Set::InstallInterfaces(*sm, system); | 291 | Set::InstallInterfaces(*sm, system); |
| 292 | Sockets::InstallInterfaces(*sm, system); | 292 | Sockets::InstallInterfaces(*sm, system); |
| 293 | SPL::InstallInterfaces(*sm, system); | 293 | SPL::InstallInterfaces(*sm, system); |