summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Yuri Kunde Schlesner2017-05-27 16:14:10 -0700
committerGravatar Yuri Kunde Schlesner2017-05-27 16:14:10 -0700
commit2579ae543b0ede7b348a6c5d4822f0a36b854fa4 (patch)
tree905929aeef1f2420c5873b3327086db52482e694 /src
parentMove framebuffer_layout from Common to Core (diff)
downloadyuzu-2579ae543b0ede7b348a6c5d4822f0a36b854fa4.tar.gz
yuzu-2579ae543b0ede7b348a6c5d4822f0a36b854fa4.tar.xz
yuzu-2579ae543b0ede7b348a6c5d4822f0a36b854fa4.zip
Common: Fix some out-of-style includes
Diffstat (limited to 'src')
-rw-r--r--src/common/common_funcs.h2
-rw-r--r--src/common/hash.cpp6
-rw-r--r--src/common/x64/cpu_detect.cpp2
3 files changed, 5 insertions, 5 deletions
diff --git a/src/common/common_funcs.h b/src/common/common_funcs.h
index b141e79ed..2e7877500 100644
--- a/src/common/common_funcs.h
+++ b/src/common/common_funcs.h
@@ -7,7 +7,7 @@
7#if !defined(ARCHITECTURE_x86_64) && !defined(_M_ARM) 7#if !defined(ARCHITECTURE_x86_64) && !defined(_M_ARM)
8#include <cstdlib> // for exit 8#include <cstdlib> // for exit
9#endif 9#endif
10#include "common_types.h" 10#include "common/common_types.h"
11 11
12#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0])) 12#define ARRAY_SIZE(a) (sizeof(a) / sizeof(a[0]))
13 13
diff --git a/src/common/hash.cpp b/src/common/hash.cpp
index f3d390dc5..a02e9e5b9 100644
--- a/src/common/hash.cpp
+++ b/src/common/hash.cpp
@@ -5,9 +5,9 @@
5#if defined(_MSC_VER) 5#if defined(_MSC_VER)
6#include <stdlib.h> 6#include <stdlib.h>
7#endif 7#endif
8#include "common_funcs.h" 8#include "common/common_funcs.h"
9#include "common_types.h" 9#include "common/common_types.h"
10#include "hash.h" 10#include "common/hash.h"
11 11
12namespace Common { 12namespace Common {
13 13
diff --git a/src/common/x64/cpu_detect.cpp b/src/common/x64/cpu_detect.cpp
index 2cb3ab9cc..62f17fbb5 100644
--- a/src/common/x64/cpu_detect.cpp
+++ b/src/common/x64/cpu_detect.cpp
@@ -6,7 +6,7 @@
6#include <string> 6#include <string>
7#include <thread> 7#include <thread>
8#include "common/common_types.h" 8#include "common/common_types.h"
9#include "cpu_detect.h" 9#include "common/x64/cpu_detect.h"
10 10
11#ifdef _MSC_VER 11#ifdef _MSC_VER
12#include <intrin.h> 12#include <intrin.h>