summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/service.cpp
diff options
context:
space:
mode:
authorpurpasmart96 <kanzoconfigz@hotmail.com>2015-03-08 02:54:16 +0100
committerpurpasmart96 <kanzoconfigz@hotmail.com>2015-04-03 05:05:11 +0200
commit198c0ddc72d59f8e288c1074ee0bb1169f706cac (patch)
tree5ecee1d8a979d0e7aeed4de12ae85ed935d31932 /src/core/hle/service/service.cpp
parentMerge pull request #656 from Subv/nz (diff)
downloadyuzu-198c0ddc72d59f8e288c1074ee0bb1169f706cac.tar
yuzu-198c0ddc72d59f8e288c1074ee0bb1169f706cac.tar.gz
yuzu-198c0ddc72d59f8e288c1074ee0bb1169f706cac.tar.bz2
yuzu-198c0ddc72d59f8e288c1074ee0bb1169f706cac.tar.lz
yuzu-198c0ddc72d59f8e288c1074ee0bb1169f706cac.tar.xz
yuzu-198c0ddc72d59f8e288c1074ee0bb1169f706cac.tar.zst
yuzu-198c0ddc72d59f8e288c1074ee0bb1169f706cac.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/service.cpp18
1 files changed, 10 insertions, 8 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index 91f13cd7e..eeb404659 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -32,6 +32,7 @@
#include "core/hle/service/news_s.h"
#include "core/hle/service/news_u.h"
#include "core/hle/service/nim_aoc.h"
+#include "core/hle/service/nim_u.h"
#include "core/hle/service/ns_s.h"
#include "core/hle/service/nwm_uds.h"
#include "core/hle/service/pm_app.h"
@@ -68,10 +69,10 @@ void Init() {
AddNamedPort(new ERR_F::Interface);
Service::FS::ArchiveInit();
- Service::CFG::CFGInit();
- Service::APT::APTInit();
- Service::PTM::PTMInit();
- Service::HID::HIDInit();
+ Service::CFG::Init();
+ Service::APT::Init();
+ Service::PTM::Init();
+ Service::HID::Init();
AddService(new AC_U::Interface);
AddService(new ACT_U::Interface);
@@ -98,6 +99,7 @@ void Init() {
AddService(new NEWS_S::Interface);
AddService(new NEWS_U::Interface);
AddService(new NIM_AOC::Interface);
+ AddService(new NIM_U::Interface);
AddService(new NS_S::Interface);
AddService(new NWM_UDS::Interface);
AddService(new PM_APP::Interface);
@@ -110,10 +112,10 @@ void Init() {
/// Shutdown ServiceManager
void Shutdown() {
- Service::HID::HIDShutdown();
- Service::PTM::PTMShutdown();
- Service::APT::APTShutdown();
- Service::CFG::CFGShutdown();
+ Service::HID::Shutdown();
+ Service::PTM::Shutdown();
+ Service::APT::Shutdown();
+ Service::CFG::Shutdown();
Service::FS::ArchiveShutdown();
g_srv_services.clear();