aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/hle/hle.cpp
diff options
context:
space:
mode:
authorGravatar Subv <subv2112@gmail.com>2014-12-21 16:36:18 -0500
committerGravatar Subv <subv2112@gmail.com>2014-12-21 16:41:06 -0500
commit6115f013a9df6faf66c9799ab25ecb106182b8c2 (patch)
tree657e9b7ff1830ffc1568c46da4a89debf1e21933 /src/core/hle/hle.cpp
parent9e45240e23a3eb43e24c4a6ffe9caf1953a6cad5 (diff)
CFG: Create a new subfolder cfg inside service to handle cfg
Moved most of the shared CFG code there, implemented a few CFG:I functions
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 98f3bb92..2d314a4c 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();