diff options
| author | 2014-12-21 16:36:18 -0500 | |
|---|---|---|
| committer | 2014-12-21 16:41:06 -0500 | |
| commit | 6115f013a9df6faf66c9799ab25ecb106182b8c2 (patch) | |
| tree | 657e9b7ff1830ffc1568c46da4a89debf1e21933 /src/core/hle/hle.cpp | |
| parent | CFGU: Some changes (diff) | |
| download | yuzu-6115f013a9df6faf66c9799ab25ecb106182b8c2.tar.gz yuzu-6115f013a9df6faf66c9799ab25ecb106182b8c2.tar.xz yuzu-6115f013a9df6faf66c9799ab25ecb106182b8c2.zip | |
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.cpp | 3 |
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() { | |||
| 58 | void Init() { | 59 | void 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 | ||
| 67 | void Shutdown() { | 69 | void Shutdown() { |
| 70 | Service::CFG::CFGShutdown(); | ||
| 68 | Service::FS::ArchiveShutdown(); | 71 | Service::FS::ArchiveShutdown(); |
| 69 | Service::Shutdown(); | 72 | Service::Shutdown(); |
| 70 | 73 | ||