summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ptm/ptm.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-12-08 11:17:19 +0100
committerLioncash <mathew1800@gmail.com>2016-12-08 11:43:08 +0100
commit41c03f481a6d95dab830d6ecf6e563ff7284dc9a (patch)
treeb9d7d0b687b552053de7a671f9b101944e5628ac /src/core/hle/service/ptm/ptm.cpp
parentMerge pull request #2286 from lioncash/svc (diff)
downloadyuzu-41c03f481a6d95dab830d6ecf6e563ff7284dc9a.tar
yuzu-41c03f481a6d95dab830d6ecf6e563ff7284dc9a.tar.gz
yuzu-41c03f481a6d95dab830d6ecf6e563ff7284dc9a.tar.bz2
yuzu-41c03f481a6d95dab830d6ecf6e563ff7284dc9a.tar.lz
yuzu-41c03f481a6d95dab830d6ecf6e563ff7284dc9a.tar.xz
yuzu-41c03f481a6d95dab830d6ecf6e563ff7284dc9a.tar.zst
yuzu-41c03f481a6d95dab830d6ecf6e563ff7284dc9a.zip
Diffstat (limited to 'src/core/hle/service/ptm/ptm.cpp')
-rw-r--r--src/core/hle/service/ptm/ptm.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/ptm/ptm.cpp b/src/core/hle/service/ptm/ptm.cpp
index 6a9f1d24d..771fd1323 100644
--- a/src/core/hle/service/ptm/ptm.cpp
+++ b/src/core/hle/service/ptm/ptm.cpp
@@ -6,7 +6,9 @@
#include "core/file_sys/file_backend.h"
#include "core/hle/service/fs/archive.h"
#include "core/hle/service/ptm/ptm.h"
+#include "core/hle/service/ptm/ptm_gets.h"
#include "core/hle/service/ptm/ptm_play.h"
+#include "core/hle/service/ptm/ptm_sets.h"
#include "core/hle/service/ptm/ptm_sysm.h"
#include "core/hle/service/ptm/ptm_u.h"
#include "core/hle/service/service.h"
@@ -106,7 +108,9 @@ void CheckNew3DS(Service::Interface* self) {
}
void Init() {
+ AddService(new PTM_Gets());
AddService(new PTM_Play_Interface);
+ AddService(new PTM_Sets());
AddService(new PTM_Sysm_Interface);
AddService(new PTM_U_Interface);