summaryrefslogtreecommitdiff
path: root/src/core/hle/hle.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-12-15 22:15:08 -0500
committerGravatar bunnei2014-12-15 22:15:08 -0500
commitcd2a31eaf4a35568a18840eba7d3cdac59881d2f (patch)
tree37a4d61adebae300e8ef172538c6a2d2eae80ff1 /src/core/hle/hle.cpp
parentUpdate README.md (diff)
parentWork around libstdc++'s lack of support for std::hash on enums (diff)
downloadyuzu-cd2a31eaf4a35568a18840eba7d3cdac59881d2f.tar.gz
yuzu-cd2a31eaf4a35568a18840eba7d3cdac59881d2f.tar.xz
yuzu-cd2a31eaf4a35568a18840eba7d3cdac59881d2f.zip
Merge pull request #283 from yuriks/archive-refactor
Archive refactor
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 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
57void Init() { 58void 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
65void Shutdown() { 67void Shutdown() {
68 Service::FS::ArchiveShutdown();
66 Service::Shutdown(); 69 Service::Shutdown();
67 70
68 g_module_db.clear(); 71 g_module_db.clear();