summaryrefslogtreecommitdiff
path: root/src/core/core.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-04-08 20:15:08 -0400
committerGravatar bunnei2014-04-08 20:15:08 -0400
commitde0a034a849f5a1cbe2fed9ef2cc4095c56e672a (patch)
treec19b7a97fded29a04d7aca5702ab901820a663dc /src/core/core.cpp
parentgot rid of 'src' folders in each sub-project (diff)
downloadyuzu-de0a034a849f5a1cbe2fed9ef2cc4095c56e672a.tar.gz
yuzu-de0a034a849f5a1cbe2fed9ef2cc4095c56e672a.tar.xz
yuzu-de0a034a849f5a1cbe2fed9ef2cc4095c56e672a.zip
fixed project includes to use new directory structure
Diffstat (limited to 'src/core/core.cpp')
-rw-r--r--src/core/core.cpp14
1 files changed, 8 insertions, 6 deletions
diff --git a/src/core/core.cpp b/src/core/core.cpp
index 540b20f27..28f6b6c58 100644
--- a/src/core/core.cpp
+++ b/src/core/core.cpp
@@ -2,12 +2,14 @@
2// Licensed under GPLv2 2// Licensed under GPLv2
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include "log.h" 5#include "common/common_types.h"
6#include "core.h" 6#include "common/log.h"
7#include "mem_map.h" 7#include "core/core.h"
8#include "hw/hw.h" 8
9#include "arm/disassembler/arm_disasm.h" 9#include "core/mem_map.h"
10#include "arm/interpreter/arm_interpreter.h" 10#include "core/hw/hw.h"
11#include "core/arm/disassembler/arm_disasm.h"
12#include "core/arm/interpreter/arm_interpreter.h"
11 13
12namespace Core { 14namespace Core {
13 15