diff options
| author | 2014-04-16 20:58:36 -0400 | |
|---|---|---|
| committer | 2014-04-16 20:58:36 -0400 | |
| commit | bb5bc2df257330561c886ed768ce2191e2641a6c (patch) | |
| tree | a5a10147dc07e3ed40fd73a8b94dc7f53e49bd9a /src/core/hle/service/service.cpp | |
| parent | updated service comments (diff) | |
| download | yuzu-bb5bc2df257330561c886ed768ce2191e2641a6c.tar.gz yuzu-bb5bc2df257330561c886ed768ce2191e2641a6c.tar.xz yuzu-bb5bc2df257330561c886ed768ce2191e2641a6c.zip | |
added class stub for HID:User service
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index f612ff830..e6605a398 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -10,6 +10,7 @@ | |||
| 10 | #include "core/hle/service/service.h" | 10 | #include "core/hle/service/service.h" |
| 11 | #include "core/hle/service/apt.h" | 11 | #include "core/hle/service/apt.h" |
| 12 | #include "core/hle/service/gsp.h" | 12 | #include "core/hle/service/gsp.h" |
| 13 | #include "core/hle/service/hid.h" | ||
| 13 | #include "core/hle/service/srv.h" | 14 | #include "core/hle/service/srv.h" |
| 14 | 15 | ||
| 15 | namespace Service { | 16 | namespace Service { |
| @@ -78,6 +79,7 @@ void Init() { | |||
| 78 | g_manager->AddService(new SRV::Interface); | 79 | g_manager->AddService(new SRV::Interface); |
| 79 | g_manager->AddService(new APT_U::Interface); | 80 | g_manager->AddService(new APT_U::Interface); |
| 80 | g_manager->AddService(new GSP_GPU::Interface); | 81 | g_manager->AddService(new GSP_GPU::Interface); |
| 82 | g_manager->AddService(new HID_User::Interface); | ||
| 81 | 83 | ||
| 82 | NOTICE_LOG(HLE, "Services initialized OK"); | 84 | NOTICE_LOG(HLE, "Services initialized OK"); |
| 83 | } | 85 | } |