summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2018-12-30 20:46:27 -0500
committerGravatar Lioncash2018-12-30 20:46:29 -0500
commit039e58a984e2c95ffae2160b81b4c08740bb2dd2 (patch)
tree3b3e6869f48aa83c66f7d3f7c3615a9793436990 /src
parentarm_interface: Make LogBacktrace() a const member function (diff)
downloadyuzu-039e58a984e2c95ffae2160b81b4c08740bb2dd2.tar.gz
yuzu-039e58a984e2c95ffae2160b81b4c08740bb2dd2.tar.xz
yuzu-039e58a984e2c95ffae2160b81b4c08740bb2dd2.zip
arm_interface: Make include path relative for arm_interface.h
Makes it consistent with the rest of the includes.
Diffstat (limited to 'src')
-rw-r--r--src/core/arm/arm_interface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/arm/arm_interface.cpp b/src/core/arm/arm_interface.cpp
index b0c9a5836..2223cbeed 100644
--- a/src/core/arm/arm_interface.cpp
+++ b/src/core/arm/arm_interface.cpp
@@ -2,9 +2,9 @@
2// Licensed under GPLv2 or any later version 2// Licensed under GPLv2 or any later version
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include "arm_interface.h"
6#include "common/common_types.h" 5#include "common/common_types.h"
7#include "common/logging/log.h" 6#include "common/logging/log.h"
7#include "core/arm/arm_interface.h"
8#include "core/memory.h" 8#include "core/memory.h"
9 9
10namespace Core { 10namespace Core {