summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
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 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);