diff options
author | purpasmart96 <kanzoconfigz@hotmail.com> | 2015-02-12 20:57:02 -0800 |
---|---|---|
committer | purpasmart96 <kanzoconfigz@hotmail.com> | 2015-02-16 15:12:05 -0800 |
commit | c3c309f33dacf877f4d7d5308d2036a89f8f9387 (patch) | |
tree | a2f7d884935508052438eb312e0c8771f1e30732 /src/core/hle/hle.cpp | |
parent | 9b69079c835352fd7727e89624accb5115d35d36 (diff) |
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.cpp | 2 |
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 @@ #include "core/arm/arm_interface.h" #include "core/mem_map.h" #include "core/hle/hle.h" +#include "core/hle/config_mem.h" #include "core/hle/shared_page.h" #include "core/hle/kernel/thread.h" #include "core/hle/service/service.h" @@ -75,6 +76,7 @@ void Init() { RegisterAllModules(); + ConfigMem::Init(); SharedPage::Init(); LOG_DEBUG(Kernel, "initialized OK"); |