summaryrefslogtreecommitdiff
path: root/src/core/hle/hle.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-12-21 21:47:25 -0500
committerGravatar bunnei2014-12-21 21:47:25 -0500
commitec1ddc17e29d81b4e5e061ebb1cf0c4044fc03a4 (patch)
tree7703d352371e3334388eea0008d2966ba0b56d15 /src/core/hle/hle.cpp
parentMerge pull request #324 from lioncash/dync (diff)
parentCFG: Fixed some warnings and errors in Clang (diff)
downloadyuzu-ec1ddc17e29d81b4e5e061ebb1cf0c4044fc03a4.tar.gz
yuzu-ec1ddc17e29d81b4e5e061ebb1cf0c4044fc03a4.tar.xz
yuzu-ec1ddc17e29d81b4e5e061ebb1cf0c4044fc03a4.zip
Merge pull request #312 from Subv/still_more_savedata_stuff
CFG: Implemented the GetConfigInfoBlk2 function.
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 @@
9#include "core/hle/kernel/thread.h" 9#include "core/hle/kernel/thread.h"
10#include "core/hle/service/service.h" 10#include "core/hle/service/service.h"
11#include "core/hle/service/fs/archive.h" 11#include "core/hle/service/fs/archive.h"
12#include "core/hle/service/cfg/cfg.h"
12 13
13//////////////////////////////////////////////////////////////////////////////////////////////////// 14////////////////////////////////////////////////////////////////////////////////////////////////////
14 15
@@ -58,6 +59,7 @@ void RegisterAllModules() {
58void Init() { 59void Init() {
59 Service::Init(); 60 Service::Init();
60 Service::FS::ArchiveInit(); 61 Service::FS::ArchiveInit();
62 Service::CFG::CFGInit();
61 63
62 RegisterAllModules(); 64 RegisterAllModules();
63 65
@@ -65,6 +67,7 @@ void Init() {
65} 67}
66 68
67void Shutdown() { 69void Shutdown() {
70 Service::CFG::CFGShutdown();
68 Service::FS::ArchiveShutdown(); 71 Service::FS::ArchiveShutdown();
69 Service::Shutdown(); 72 Service::Shutdown();
70 73