summaryrefslogtreecommitdiffstats
path: root/src/core/hle/hle.cpp
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2015-01-19 00:31:52 +0100
committerbunnei <bunneidev@gmail.com>2015-01-19 00:31:52 +0100
commitbe8f6651428b3171b884d2b7f59f7fca260c4a54 (patch)
treef0953139bd9164c5fb72e46da9fa8c69a3c8bea5 /src/core/hle/hle.cpp
parentMerge pull request #489 from lioncash/strt (diff)
parentAdd some support for the shared page (currently 3d slider is implemented) (diff)
downloadyuzu-be8f6651428b3171b884d2b7f59f7fca260c4a54.tar
yuzu-be8f6651428b3171b884d2b7f59f7fca260c4a54.tar.gz
yuzu-be8f6651428b3171b884d2b7f59f7fca260c4a54.tar.bz2
yuzu-be8f6651428b3171b884d2b7f59f7fca260c4a54.tar.lz
yuzu-be8f6651428b3171b884d2b7f59f7fca260c4a54.tar.xz
yuzu-be8f6651428b3171b884d2b7f59f7fca260c4a54.tar.zst
yuzu-be8f6651428b3171b884d2b7f59f7fca260c4a54.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 5d77a1458..11570c8b4 100644
--- a/src/core/hle/hle.cpp
+++ b/src/core/hle/hle.cpp
@@ -7,6 +7,7 @@
#include "core/arm/arm_interface.h"
#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"
@@ -72,6 +73,8 @@ void Init() {
RegisterAllModules();
+ SharedPage::Init();
+
LOG_DEBUG(Kernel, "initialized OK");
}