diff options
| author | 2017-06-05 22:18:19 -0700 | |
|---|---|---|
| committer | 2017-06-06 02:57:04 -0700 | |
| commit | 1eee09f36458bbb98212e05cb549cc43a995f03b (patch) | |
| tree | b60158e9437e9d094d7545fa6cffab7af43e77a2 /src/core/hle/service/service.cpp | |
| parent | Kernel: Add a dedicated SetHleHandler method to ServerPort/ServerSession (diff) | |
| download | yuzu-1eee09f36458bbb98212e05cb549cc43a995f03b.tar.gz yuzu-1eee09f36458bbb98212e05cb549cc43a995f03b.tar.xz yuzu-1eee09f36458bbb98212e05cb549cc43a995f03b.zip | |
Service: Move SRV interface to a new sm/ subdirectory
This will contain the implementation of the sm (Service Manager) system
module.
Diffstat (limited to 'src/core/hle/service/service.cpp')
| -rw-r--r-- | src/core/hle/service/service.cpp | 4 |
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 @@ | |||
| 38 | #include "core/hle/service/ptm/ptm.h" | 38 | #include "core/hle/service/ptm/ptm.h" |
| 39 | #include "core/hle/service/qtm/qtm.h" | 39 | #include "core/hle/service/qtm/qtm.h" |
| 40 | #include "core/hle/service/service.h" | 40 | #include "core/hle/service/service.h" |
| 41 | #include "core/hle/service/sm/srv.h" | ||
| 41 | #include "core/hle/service/soc_u.h" | 42 | #include "core/hle/service/soc_u.h" |
| 42 | #include "core/hle/service/srv.h" | ||
| 43 | #include "core/hle/service/ssl_c.h" | 43 | #include "core/hle/service/ssl_c.h" |
| 44 | #include "core/hle/service/y2r_u.h" | 44 | #include "core/hle/service/y2r_u.h" |
| 45 | 45 | ||
| @@ -126,7 +126,7 @@ void AddService(Interface* interface_) { | |||
| 126 | 126 | ||
| 127 | /// Initialize ServiceManager | 127 | /// Initialize ServiceManager |
| 128 | void Init() { | 128 | void Init() { |
| 129 | AddNamedPort(new SRV::SRV); | 129 | AddNamedPort(new SM::SRV); |
| 130 | AddNamedPort(new ERR::ERR_F); | 130 | AddNamedPort(new ERR::ERR_F); |
| 131 | 131 | ||
| 132 | FS::ArchiveInit(); | 132 | FS::ArchiveInit(); |