summaryrefslogtreecommitdiff
path: root/src/core/hle/hle.cpp
diff options
context:
space:
mode:
authorGravatar Zhuowei Zhang2015-01-01 21:41:34 -0800
committerGravatar Zhuowei Zhang2015-01-15 22:16:13 -0500
commitedb8450420149cc5fa11dfd2fd2c0c3cd20beffa (patch)
tree00f7e56449ae0a64f80b9573a2f2e2ade7457ff5 /src/core/hle/hle.cpp
parentMerge pull request #441 from Kingcom/CallStack (diff)
downloadyuzu-edb8450420149cc5fa11dfd2fd2c0c3cd20beffa.tar.gz
yuzu-edb8450420149cc5fa11dfd2fd2c0c3cd20beffa.tar.xz
yuzu-edb8450420149cc5fa11dfd2fd2c0c3cd20beffa.zip
Add some support for the shared page (currently 3d slider is implemented)
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 33ac12507..f76048d14 100644
--- a/src/core/hle/hle.cpp
+++ b/src/core/hle/hle.cpp
@@ -6,6 +6,7 @@
6 6
7#include "core/mem_map.h" 7#include "core/mem_map.h"
8#include "core/hle/hle.h" 8#include "core/hle/hle.h"
9#include "core/hle/shared_page.h"
9#include "core/hle/kernel/thread.h" 10#include "core/hle/kernel/thread.h"
10#include "core/hle/service/service.h" 11#include "core/hle/service/service.h"
11#include "core/hle/service/fs/archive.h" 12#include "core/hle/service/fs/archive.h"
@@ -71,6 +72,8 @@ void Init() {
71 72
72 RegisterAllModules(); 73 RegisterAllModules();
73 74
75 SharedPage::Init();
76
74 LOG_DEBUG(Kernel, "initialized OK"); 77 LOG_DEBUG(Kernel, "initialized OK");
75} 78}
76 79