summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2017-06-06 07:18:19 +0200
committerYuri Kunde Schlesner <yuriks@yuriks.net>2017-06-06 11:57:04 +0200
commit1eee09f36458bbb98212e05cb549cc43a995f03b (patch)
treeb60158e9437e9d094d7545fa6cffab7af43e77a2 /src/core/hle/service/service.cpp
parentKernel: Add a dedicated SetHleHandler method to ServerPort/ServerSession (diff)
downloadyuzu-1eee09f36458bbb98212e05cb549cc43a995f03b.tar
yuzu-1eee09f36458bbb98212e05cb549cc43a995f03b.tar.gz
yuzu-1eee09f36458bbb98212e05cb549cc43a995f03b.tar.bz2
yuzu-1eee09f36458bbb98212e05cb549cc43a995f03b.tar.lz
yuzu-1eee09f36458bbb98212e05cb549cc43a995f03b.tar.xz
yuzu-1eee09f36458bbb98212e05cb549cc43a995f03b.tar.zst
yuzu-1eee09f36458bbb98212e05cb549cc43a995f03b.zip
Diffstat (limited to 'src/core/hle/service/service.cpp')
-rw-r--r--src/core/hle/service/service.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 8f7c97d54..3a821871f 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -38,8 +38,8 @@
#include "core/hle/service/ptm/ptm.h"
#include "core/hle/service/qtm/qtm.h"
#include "core/hle/service/service.h"
+#include "core/hle/service/sm/srv.h"
#include "core/hle/service/soc_u.h"
-#include "core/hle/service/srv.h"
#include "core/hle/service/ssl_c.h"
#include "core/hle/service/y2r_u.h"
@@ -126,7 +126,7 @@ void AddService(Interface* interface_) {
/// Initialize ServiceManager
void Init() {
- AddNamedPort(new SRV::SRV);
+ AddNamedPort(new SM::SRV);
AddNamedPort(new ERR::ERR_F);
FS::ArchiveInit();