diff options
| author | 2015-01-18 18:31:52 -0500 | |
|---|---|---|
| committer | 2015-01-18 18:31:52 -0500 | |
| commit | be8f6651428b3171b884d2b7f59f7fca260c4a54 (patch) | |
| tree | f0953139bd9164c5fb72e46da9fa8c69a3c8bea5 /src/core/hle/hle.cpp | |
| parent | Merge pull request #489 from lioncash/strt (diff) | |
| parent | Add some support for the shared page (currently 3d slider is implemented) (diff) | |
| download | yuzu-be8f6651428b3171b884d2b7f59f7fca260c4a54.tar.gz yuzu-be8f6651428b3171b884d2b7f59f7fca260c4a54.tar.xz yuzu-be8f6651428b3171b884d2b7f59f7fca260c4a54.zip | |
Merge pull request #383 from zhuowei/shared_page
Add some support for the shared page
Diffstat (limited to 'src/core/hle/hle.cpp')
| -rw-r--r-- | src/core/hle/hle.cpp | 3 |
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 @@ | |||
| 7 | #include "core/arm/arm_interface.h" | 7 | #include "core/arm/arm_interface.h" |
| 8 | #include "core/mem_map.h" | 8 | #include "core/mem_map.h" |
| 9 | #include "core/hle/hle.h" | 9 | #include "core/hle/hle.h" |
| 10 | #include "core/hle/shared_page.h" | ||
| 10 | #include "core/hle/kernel/thread.h" | 11 | #include "core/hle/kernel/thread.h" |
| 11 | #include "core/hle/service/service.h" | 12 | #include "core/hle/service/service.h" |
| 12 | #include "core/hle/service/fs/archive.h" | 13 | #include "core/hle/service/fs/archive.h" |
| @@ -72,6 +73,8 @@ void Init() { | |||
| 72 | 73 | ||
| 73 | RegisterAllModules(); | 74 | RegisterAllModules(); |
| 74 | 75 | ||
| 76 | SharedPage::Init(); | ||
| 77 | |||
| 75 | LOG_DEBUG(Kernel, "initialized OK"); | 78 | LOG_DEBUG(Kernel, "initialized OK"); |
| 76 | } | 79 | } |
| 77 | 80 | ||