diff options
| author | 2014-12-14 05:55:11 -0200 | |
|---|---|---|
| committer | 2014-12-16 01:08:38 -0200 | |
| commit | ca67bb7945bf358cf38242a04febfd3375760947 (patch) | |
| tree | 831ebab2a75fc4b096f61dfefaa462805e22ac4e /src/core/hle/hle.cpp | |
| parent | HLE: Move kernel/archive.* to service/fs/ (diff) | |
| download | yuzu-ca67bb7945bf358cf38242a04febfd3375760947.tar.gz yuzu-ca67bb7945bf358cf38242a04febfd3375760947.tar.xz yuzu-ca67bb7945bf358cf38242a04febfd3375760947.zip | |
HLE: Rename namespaces to match move & fix initialization order
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 3f73b5538..cc3d5255a 100644 --- a/src/core/hle/hle.cpp +++ b/src/core/hle/hle.cpp | |||
| @@ -8,6 +8,7 @@ | |||
| 8 | #include "core/hle/hle.h" | 8 | #include "core/hle/hle.h" |
| 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 | 12 | ||
| 12 | //////////////////////////////////////////////////////////////////////////////////////////////////// | 13 | //////////////////////////////////////////////////////////////////////////////////////////////////// |
| 13 | 14 | ||
| @@ -56,6 +57,7 @@ void RegisterAllModules() { | |||
| 56 | 57 | ||
| 57 | void Init() { | 58 | void Init() { |
| 58 | Service::Init(); | 59 | Service::Init(); |
| 60 | Service::FS::ArchiveInit(); | ||
| 59 | 61 | ||
| 60 | RegisterAllModules(); | 62 | RegisterAllModules(); |
| 61 | 63 | ||
| @@ -63,6 +65,7 @@ void Init() { | |||
| 63 | } | 65 | } |
| 64 | 66 | ||
| 65 | void Shutdown() { | 67 | void Shutdown() { |
| 68 | Service::FS::ArchiveShutdown(); | ||
| 66 | Service::Shutdown(); | 69 | Service::Shutdown(); |
| 67 | 70 | ||
| 68 | g_module_db.clear(); | 71 | g_module_db.clear(); |