summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/core/hle/service/service.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 556dfc8a2..b0b2b7b35 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -66,14 +66,14 @@ Interface* Manager::FetchFromPortName(std::string port_name) {
66//////////////////////////////////////////////////////////////////////////////////////////////////// 66////////////////////////////////////////////////////////////////////////////////////////////////////
67// Interface to "SRV" service 67// Interface to "SRV" service
68 68
69class Interface_SRV : public Interface { 69class SRV : public Interface {
70 70
71public: 71public:
72 72
73 Interface_SRV() { 73 SRV() {
74 } 74 }
75 75
76 ~Interface_SRV() { 76 ~SRV() {
77 } 77 }
78 78
79 enum { 79 enum {
@@ -108,11 +108,11 @@ public:
108 108
109 switch (header) { 109 switch (header) {
110 case CMD_HEADER_INIT: 110 case CMD_HEADER_INIT:
111 NOTICE_LOG(HLE, "Interface_SRV::Sync - Initialize"); 111 NOTICE_LOG(HLE, "SRV::Sync - Initialize");
112 break; 112 break;
113 113
114 case CMD_HEADER_GET_HANDLE: 114 case CMD_HEADER_GET_HANDLE:
115 NOTICE_LOG(HLE, "Interface_SRV::Sync - GetHandle, port: %s", HLE::GetCharPointer(HLE::CMD_BUFFER_ADDR + CMD_OFFSET + 4)); 115 NOTICE_LOG(HLE, "SRV::Sync - GetHandle, port: %s", HLE::GetCharPointer(HLE::CMD_BUFFER_ADDR + CMD_OFFSET + 4));
116 break; 116 break;
117 } 117 }
118 118
@@ -127,7 +127,7 @@ public:
127/// Initialize ServiceManager 127/// Initialize ServiceManager
128void Init() { 128void Init() {
129 g_manager = new Manager; 129 g_manager = new Manager;
130 g_manager->AddService(new Interface_SRV); 130 g_manager->AddService(new SRV);
131 NOTICE_LOG(HLE, "Services initialized OK"); 131 NOTICE_LOG(HLE, "Services initialized OK");
132} 132}
133 133