diff options
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 | ||