|
|
@@ -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);
|
|
|
|