summaryrefslogtreecommitdiff
path: root/src/core/hle/hle.cpp
diff options
context:
space:
mode:
authorGravatar purpasmart962015-02-12 20:57:02 -0800
committerGravatar purpasmart962015-02-16 15:12:05 -0800
commitc3c309f33dacf877f4d7d5308d2036a89f8f9387 (patch)
treea2f7d884935508052438eb312e0c8771f1e30732 /src/core/hle/hle.cpp
parentMerge pull request #569 from lioncash/modeswitch (diff)
downloadyuzu-c3c309f33dacf877f4d7d5308d2036a89f8f9387.tar.gz
yuzu-c3c309f33dacf877f4d7d5308d2036a89f8f9387.tar.xz
yuzu-c3c309f33dacf877f4d7d5308d2036a89f8f9387.zip
ConfigMem: Clean up the Config memory to be more like the shared page and moved
the helper macro for padding to common_funcs.h
Diffstat (limited to 'src/core/hle/hle.cpp')
-rw-r--r--src/core/hle/hle.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/hle/hle.cpp b/src/core/hle/hle.cpp
index 97d73781f..fd4761c72 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/config_mem.h"
10#include "core/hle/shared_page.h" 11#include "core/hle/shared_page.h"
11#include "core/hle/kernel/thread.h" 12#include "core/hle/kernel/thread.h"
12#include "core/hle/service/service.h" 13#include "core/hle/service/service.h"
@@ -75,6 +76,7 @@ void Init() {
75 76
76 RegisterAllModules(); 77 RegisterAllModules();
77 78
79 ConfigMem::Init();
78 SharedPage::Init(); 80 SharedPage::Init();
79 81
80 LOG_DEBUG(Kernel, "initialized OK"); 82 LOG_DEBUG(Kernel, "initialized OK");