diff options
| author | 2018-03-30 14:18:57 -0400 | |
|---|---|---|
| committer | 2018-03-30 14:18:57 -0400 | |
| commit | 9cba0f1794976248edfbf5a701a802c9ae406bb8 (patch) | |
| tree | dd28ca6f569fd7ac18f67430fcefb4e0193f4184 /src/core/hle/service/service.cpp | |
| parent | Merge pull request #290 from MerryMage/dfix-20180329 (diff) | |
| parent | audren_u: Stub QueryAudioDeviceSystemEvent and GetActiveChannelCount. (diff) | |
| download | yuzu-9cba0f1794976248edfbf5a701a802c9ae406bb8.tar.gz yuzu-9cba0f1794976248edfbf5a701a802c9ae406bb8.tar.xz yuzu-9cba0f1794976248edfbf5a701a802c9ae406bb8.zip | |
Merge pull request #292 from bunnei/botw-progress
NFP, SVC, and AudRen progress
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 b224b89da..8011d0d71 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp | |||
| @@ -25,6 +25,7 @@ | |||
| 25 | #include "core/hle/service/friend/friend.h" | 25 | #include "core/hle/service/friend/friend.h" |
| 26 | #include "core/hle/service/hid/hid.h" | 26 | #include "core/hle/service/hid/hid.h" |
| 27 | #include "core/hle/service/lm/lm.h" | 27 | #include "core/hle/service/lm/lm.h" |
| 28 | #include "core/hle/service/nfp/nfp.h" | ||
| 28 | #include "core/hle/service/nifm/nifm.h" | 29 | #include "core/hle/service/nifm/nifm.h" |
| 29 | #include "core/hle/service/ns/ns.h" | 30 | #include "core/hle/service/ns/ns.h" |
| 30 | #include "core/hle/service/nvdrv/nvdrv.h" | 31 | #include "core/hle/service/nvdrv/nvdrv.h" |
| @@ -187,6 +188,7 @@ void Init() { | |||
| 187 | Friend::InstallInterfaces(*SM::g_service_manager); | 188 | Friend::InstallInterfaces(*SM::g_service_manager); |
| 188 | HID::InstallInterfaces(*SM::g_service_manager); | 189 | HID::InstallInterfaces(*SM::g_service_manager); |
| 189 | LM::InstallInterfaces(*SM::g_service_manager); | 190 | LM::InstallInterfaces(*SM::g_service_manager); |
| 191 | NFP::InstallInterfaces(*SM::g_service_manager); | ||
| 190 | NIFM::InstallInterfaces(*SM::g_service_manager); | 192 | NIFM::InstallInterfaces(*SM::g_service_manager); |
| 191 | NS::InstallInterfaces(*SM::g_service_manager); | 193 | NS::InstallInterfaces(*SM::g_service_manager); |
| 192 | Nvidia::InstallInterfaces(*SM::g_service_manager); | 194 | Nvidia::InstallInterfaces(*SM::g_service_manager); |