aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/ptm/ptm.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-12-08 05:20:12 -0500
committerLioncash <mathew1800@gmail.com>2016-12-08 06:13:04 -0500
commitcd778cf9915689f14fbf7bd4499edd186993bc9e (patch)
tree32cba6a063bd91307b83a9c2f97778e3211fe1c5 /src/core/hle/service/ptm/ptm.cpp
parent41c03f481a6d95dab830d6ecf6e563ff7284dc9a (diff)
service: Drop '_Interface' in ptm service class names
Inheriting from Service::Interface makes this obvious.
Diffstat (limited to 'src/core/hle/service/ptm/ptm.cpp')
-rw-r--r--src/core/hle/service/ptm/ptm.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/core/hle/service/ptm/ptm.cpp b/src/core/hle/service/ptm/ptm.cpp
index 771fd1323..da7d56ced 100644
--- a/src/core/hle/service/ptm/ptm.cpp
+++ b/src/core/hle/service/ptm/ptm.cpp
@@ -108,11 +108,11 @@ 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);
+ AddService(new PTM_Gets);
+ AddService(new PTM_Play);
+ AddService(new PTM_Sets);
+ AddService(new PTM_Sysm);
+ AddService(new PTM_U);
shell_open = true;
battery_is_charging = true;