summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2022-06-27 01:48:12 +0200
committerNarr the Reg <juangerman-13@hotmail.com>2022-06-29 02:22:46 +0200
commitc0264d212196481553df05df4a4b94743efa07f1 (patch)
treed0c399d3343fba5df84d563762564fa4aa4d6906 /src/core/hle/service/service.cpp
parentMerge pull request #8512 from german77/nnResult (diff)
downloadyuzu-c0264d212196481553df05df4a4b94743efa07f1.tar
yuzu-c0264d212196481553df05df4a4b94743efa07f1.tar.gz
yuzu-c0264d212196481553df05df4a4b94743efa07f1.tar.bz2
yuzu-c0264d212196481553df05df4a4b94743efa07f1.tar.lz
yuzu-c0264d212196481553df05df4a4b94743efa07f1.tar.xz
yuzu-c0264d212196481553df05df4a4b94743efa07f1.tar.zst
yuzu-c0264d212196481553df05df4a4b94743efa07f1.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/service.cpp4
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 @@
#include "core/hle/service/pm/pm.h"
#include "core/hle/service/prepo/prepo.h"
#include "core/hle/service/psc/psc.h"
-#include "core/hle/service/ptm/psm.h"
+#include "core/hle/service/ptm/ptm.h"
#include "core/hle/service/service.h"
#include "core/hle/service/set/settings.h"
#include "core/hle/service/sm/sm.h"
@@ -287,7 +287,7 @@ Services::Services(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system
PlayReport::InstallInterfaces(*sm, system);
PM::InstallInterfaces(system);
PSC::InstallInterfaces(*sm, system);
- PSM::InstallInterfaces(*sm, system);
+ PTM::InstallInterfaces(*sm, system);
Set::InstallInterfaces(*sm, system);
Sockets::InstallInterfaces(*sm, system);
SPL::InstallInterfaces(*sm, system);