summaryrefslogtreecommitdiffstats
path: root/src/core/hle/hle.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2014-12-21 22:36:18 +0100
committerSubv <subv2112@gmail.com>2014-12-21 22:41:06 +0100
commit6115f013a9df6faf66c9799ab25ecb106182b8c2 (patch)
tree657e9b7ff1830ffc1568c46da4a89debf1e21933 /src/core/hle/hle.cpp
parentCFGU: Some changes (diff)
downloadyuzu-6115f013a9df6faf66c9799ab25ecb106182b8c2.tar
yuzu-6115f013a9df6faf66c9799ab25ecb106182b8c2.tar.gz
yuzu-6115f013a9df6faf66c9799ab25ecb106182b8c2.tar.bz2
yuzu-6115f013a9df6faf66c9799ab25ecb106182b8c2.tar.lz
yuzu-6115f013a9df6faf66c9799ab25ecb106182b8c2.tar.xz
yuzu-6115f013a9df6faf66c9799ab25ecb106182b8c2.tar.zst
yuzu-6115f013a9df6faf66c9799ab25ecb106182b8c2.zip
Diffstat (limited to 'src/core/hle/hle.cpp')
-rw-r--r--src/core/hle/hle.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/hle/hle.cpp b/src/core/hle/hle.cpp
index 98f3bb922..2d314a4cf 100644
--- a/src/core/hle/hle.cpp
+++ b/src/core/hle/hle.cpp
@@ -9,6 +9,7 @@
#include "core/hle/kernel/thread.h"
#include "core/hle/service/service.h"
#include "core/hle/service/fs/archive.h"
+#include "core/hle/service/cfg/cfg.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -58,6 +59,7 @@ void RegisterAllModules() {
void Init() {
Service::Init();
Service::FS::ArchiveInit();
+ Service::CFG::CFGInit();
RegisterAllModules();
@@ -65,6 +67,7 @@ void Init() {
}
void Shutdown() {
+ Service::CFG::CFGShutdown();
Service::FS::ArchiveShutdown();
Service::Shutdown();