summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2015-01-04 21:40:58 -0500
committerGravatar bunnei2015-01-04 21:40:58 -0500
commit26f31a2dfb9406927e69a7a4befc78c21844a69a (patch)
tree2fb7a0e388c1b37f9337862bad40e6018e65ed49 /src/core/hle/service/service.cpp
parentMerge pull request #406 from chrisvj/license-headers (diff)
parentStub the y2r:u service (diff)
downloadyuzu-26f31a2dfb9406927e69a7a4befc78c21844a69a.tar.gz
yuzu-26f31a2dfb9406927e69a7a4befc78c21844a69a.tar.xz
yuzu-26f31a2dfb9406927e69a7a4befc78c21844a69a.zip
Merge pull request #386 from archshift/y2ru
Stub the y2r:u service
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 0f3cc2aa8..c5233e687 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -37,6 +37,7 @@
37#include "core/hle/service/soc_u.h" 37#include "core/hle/service/soc_u.h"
38#include "core/hle/service/srv.h" 38#include "core/hle/service/srv.h"
39#include "core/hle/service/ssl_c.h" 39#include "core/hle/service/ssl_c.h"
40#include "core/hle/service/y2r_u.h"
40 41
41namespace Service { 42namespace Service {
42 43
@@ -122,6 +123,7 @@ void Init() {
122 g_manager->AddService(new PTM_U::Interface); 123 g_manager->AddService(new PTM_U::Interface);
123 g_manager->AddService(new SOC_U::Interface); 124 g_manager->AddService(new SOC_U::Interface);
124 g_manager->AddService(new SSL_C::Interface); 125 g_manager->AddService(new SSL_C::Interface);
126 g_manager->AddService(new Y2R_U::Interface);
125 127
126 LOG_DEBUG(Service, "initialized OK"); 128 LOG_DEBUG(Service, "initialized OK");
127} 129}