summaryrefslogtreecommitdiffstats
path: root/src/core/hle/hle.cpp
diff options
context:
space:
mode:
authorZhuowei Zhang <zhuoweizhang@yahoo.com>2015-01-02 06:41:34 +0100
committerZhuowei Zhang <zhuoweizhang@yahoo.com>2015-01-16 04:16:13 +0100
commitedb8450420149cc5fa11dfd2fd2c0c3cd20beffa (patch)
tree00f7e56449ae0a64f80b9573a2f2e2ade7457ff5 /src/core/hle/hle.cpp
parentMerge pull request #441 from Kingcom/CallStack (diff)
downloadyuzu-edb8450420149cc5fa11dfd2fd2c0c3cd20beffa.tar
yuzu-edb8450420149cc5fa11dfd2fd2c0c3cd20beffa.tar.gz
yuzu-edb8450420149cc5fa11dfd2fd2c0c3cd20beffa.tar.bz2
yuzu-edb8450420149cc5fa11dfd2fd2c0c3cd20beffa.tar.lz
yuzu-edb8450420149cc5fa11dfd2fd2c0c3cd20beffa.tar.xz
yuzu-edb8450420149cc5fa11dfd2fd2c0c3cd20beffa.tar.zst
yuzu-edb8450420149cc5fa11dfd2fd2c0c3cd20beffa.zip
Diffstat (limited to '')
-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 33ac12507..f76048d14 100644
--- a/src/core/hle/hle.cpp
+++ b/src/core/hle/hle.cpp
@@ -6,6 +6,7 @@
#include "core/mem_map.h"
#include "core/hle/hle.h"
+#include "core/hle/shared_page.h"
#include "core/hle/kernel/thread.h"
#include "core/hle/service/service.h"
#include "core/hle/service/fs/archive.h"
@@ -71,6 +72,8 @@ void Init() {
RegisterAllModules();
+ SharedPage::Init();
+
LOG_DEBUG(Kernel, "initialized OK");
}