summaryrefslogtreecommitdiffstats
path: root/src/core/hle/hle.cpp
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2014-12-14 08:55:11 +0100
committerYuri Kunde Schlesner <yuriks@yuriks.net>2014-12-16 04:08:38 +0100
commitca67bb7945bf358cf38242a04febfd3375760947 (patch)
tree831ebab2a75fc4b096f61dfefaa462805e22ac4e /src/core/hle/hle.cpp
parentHLE: Move kernel/archive.* to service/fs/ (diff)
downloadyuzu-ca67bb7945bf358cf38242a04febfd3375760947.tar
yuzu-ca67bb7945bf358cf38242a04febfd3375760947.tar.gz
yuzu-ca67bb7945bf358cf38242a04febfd3375760947.tar.bz2
yuzu-ca67bb7945bf358cf38242a04febfd3375760947.tar.lz
yuzu-ca67bb7945bf358cf38242a04febfd3375760947.tar.xz
yuzu-ca67bb7945bf358cf38242a04febfd3375760947.tar.zst
yuzu-ca67bb7945bf358cf38242a04febfd3375760947.zip
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 @@
#include "core/hle/hle.h"
#include "core/hle/kernel/thread.h"
#include "core/hle/service/service.h"
+#include "core/hle/service/fs/archive.h"
////////////////////////////////////////////////////////////////////////////////////////////////////
@@ -56,6 +57,7 @@ void RegisterAllModules() {
void Init() {
Service::Init();
+ Service::FS::ArchiveInit();
RegisterAllModules();
@@ -63,6 +65,7 @@ void Init() {
}
void Shutdown() {
+ Service::FS::ArchiveShutdown();
Service::Shutdown();
g_module_db.clear();