diff options
| author | 2013-09-08 13:17:27 -0400 | |
|---|---|---|
| committer | 2013-09-08 13:17:27 -0400 | |
| commit | 6847033b27cb07c566d75fb291131910a4296702 (patch) | |
| tree | 83675e98f19a6dc597c90a139c70b0a18d713c9b /src/core | |
| parent | start of 3DS memory map (diff) | |
| download | yuzu-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.cpp | 2 |
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 | ||
| 27 | namespace Core { | 28 | namespace Core { |
| 28 | 29 | ||
| @@ -40,6 +41,7 @@ void Stop() { | |||
| 40 | 41 | ||
| 41 | /// Initialize the core | 42 | /// Initialize the core |
| 42 | int Init(EmuWindow* emu_window) { | 43 | int Init(EmuWindow* emu_window) { |
| 44 | Memory::Init(); | ||
| 43 | return 0; | 45 | return 0; |
| 44 | } | 46 | } |
| 45 | 47 | ||