summaryrefslogtreecommitdiff
path: root/src/core
diff options
context:
space:
mode:
authorGravatar ShizZy2013-09-08 13:17:27 -0400
committerGravatar ShizZy2013-09-08 13:17:27 -0400
commit6847033b27cb07c566d75fb291131910a4296702 (patch)
tree83675e98f19a6dc597c90a139c70b0a18d713c9b /src/core
parentstart of 3DS memory map (diff)
downloadyuzu-6847033b27cb07c566d75fb291131910a4296702.tar.gz
yuzu-6847033b27cb07c566d75fb291131910a4296702.tar.xz
yuzu-6847033b27cb07c566d75fb291131910a4296702.zip
updated common paths
Diffstat (limited to 'src/core')
-rw-r--r--src/core/src/core.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/src/core.cpp b/src/core/src/core.cpp
index 4e956fde3..61e3a8df4 100644
--- a/src/core/src/core.cpp
+++ b/src/core/src/core.cpp
@@ -23,6 +23,7 @@
23 */ 23 */
24 24
25#include "core.h" 25#include "core.h"
26#include "mem_map.h"
26 27
27namespace Core { 28namespace Core {
28 29
@@ -40,6 +41,7 @@ void Stop() {
40 41
41/// Initialize the core 42/// Initialize the core
42int Init(EmuWindow* emu_window) { 43int Init(EmuWindow* emu_window) {
44 Memory::Init();
43 return 0; 45 return 0;
44} 46}
45 47