diff options
| -rw-r--r-- | src/core/hle/service/hid/hid.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/hid/hid.cpp b/src/core/hle/service/hid/hid.cpp index 326e0a4ab..e920560ee 100644 --- a/src/core/hle/service/hid/hid.cpp +++ b/src/core/hle/service/hid/hid.cpp | |||
| @@ -49,7 +49,7 @@ private: | |||
| 49 | IPC::ResponseBuilder rb{ctx, 2, 1}; | 49 | IPC::ResponseBuilder rb{ctx, 2, 1}; |
| 50 | rb.Push(RESULT_SUCCESS); | 50 | rb.Push(RESULT_SUCCESS); |
| 51 | rb.PushCopyObjects(shared_mem); | 51 | rb.PushCopyObjects(shared_mem); |
| 52 | LOG_DEBUG(Service, "called"); | 52 | LOG_DEBUG(Service_HID, "called"); |
| 53 | } | 53 | } |
| 54 | 54 | ||
| 55 | void LoadInputDevices() { | 55 | void LoadInputDevices() { |
| @@ -172,7 +172,7 @@ private: | |||
| 172 | IPC::ResponseBuilder rb{ctx, 2, 0, 1}; | 172 | IPC::ResponseBuilder rb{ctx, 2, 0, 1}; |
| 173 | rb.Push(RESULT_SUCCESS); | 173 | rb.Push(RESULT_SUCCESS); |
| 174 | rb.PushIpcInterface<IAppletResource>(applet_resource); | 174 | rb.PushIpcInterface<IAppletResource>(applet_resource); |
| 175 | LOG_DEBUG(Service, "called"); | 175 | LOG_DEBUG(Service_HID, "called"); |
| 176 | } | 176 | } |
| 177 | }; | 177 | }; |
| 178 | 178 | ||