diff options
| author | 2018-07-25 22:57:08 -0400 | |
|---|---|---|
| committer | 2018-07-25 23:11:03 -0400 | |
| commit | 3fb124961eb99a2dfaacdc32541464387901edc1 (patch) | |
| tree | c659f2ecbfc0ff2390b5eceecd5acf703bdb31bc /src/core/hle/service/service.cpp | |
| parent | Merge pull request #824 from lioncash/nvdrv (diff) | |
| download | yuzu-3fb124961eb99a2dfaacdc32541464387901edc1.tar.gz yuzu-3fb124961eb99a2dfaacdc32541464387901edc1.tar.xz yuzu-3fb124961eb99a2dfaacdc32541464387901edc1.zip | |
service: Add ldr services
Adds the skeleton for the ldr-related services based off the information
provided on Switch Brew.
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 4daf13fa3..2ac416b98 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -26,6 +26,7 @@ | |||
| 26 | #include "core/hle/service/filesystem/filesystem.h" | 26 | #include "core/hle/service/filesystem/filesystem.h" |
| 27 | #include "core/hle/service/friend/friend.h" | 27 | #include "core/hle/service/friend/friend.h" |
| 28 | #include "core/hle/service/hid/hid.h" | 28 | #include "core/hle/service/hid/hid.h" |
| 29 | #include "core/hle/service/ldr/ldr.h" | ||
| 29 | #include "core/hle/service/lm/lm.h" | 30 | #include "core/hle/service/lm/lm.h" |
| 30 | #include "core/hle/service/mm/mm_u.h" | 31 | #include "core/hle/service/mm/mm_u.h" |
| 31 | #include "core/hle/service/nfp/nfp.h" | 32 | #include "core/hle/service/nfp/nfp.h" |
| @@ -194,6 +195,7 @@ void Init(std::shared_ptr<SM::ServiceManager>& sm) { | |||
| 194 | FileSystem::InstallInterfaces(*sm); | 195 | FileSystem::InstallInterfaces(*sm); |
| 195 | Friend::InstallInterfaces(*sm); | 196 | Friend::InstallInterfaces(*sm); |
| 196 | HID::InstallInterfaces(*sm); | 197 | HID::InstallInterfaces(*sm); |
| 198 | LDR::InstallInterfaces(*sm); | ||
| 197 | LM::InstallInterfaces(*sm); | 199 | LM::InstallInterfaces(*sm); |
| 198 | MM::InstallInterfaces(*sm); | 200 | MM::InstallInterfaces(*sm); |
| 199 | NFP::InstallInterfaces(*sm); | 201 | NFP::InstallInterfaces(*sm); |