summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-12-23 14:18:14 -0500
committerLioncash <mathew1800@gmail.com>2017-01-10 05:24:44 -0500
commitea8fc594a51785cf7b730df7e91fcf96bafca0ff (patch)
treec3e645fe328c38b34ec99f2438764cb2011dfe53 /Source/Core/DolphinWX/Debugger/CodeWindow.cpp
parent45a875e2f257bc85392840125148d7c180eb5ac1 (diff)
Common: Move BreakPoints into Core
BreakPoints utilizes the jit global variable, so this was making Core and Common cyclical dependencies on one another.
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/CodeWindow.cpp')
-rw-r--r--Source/Core/DolphinWX/Debugger/CodeWindow.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
index 348363ae8d..1b60ca1252 100644
--- a/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
+++ b/Source/Core/DolphinWX/Debugger/CodeWindow.cpp
@@ -2,6 +2,8 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
+#include "DolphinWX/Debugger/CodeWindow.h"
+
#include <array>
#include <chrono>
#include <cstdio>
@@ -23,7 +25,6 @@
#include <wx/aui/dockart.h>
// clang-format on
-#include "Common/BreakPoints.h"
#include "Common/CommonTypes.h"
#include "Common/StringUtil.h"
#include "Common/SymbolDB.h"
@@ -34,6 +35,7 @@
#include "Core/HW/Memmap.h"
#include "Core/HW/SystemTimers.h"
#include "Core/Host.h"
+#include "Core/PowerPC/BreakPoints.h"
#include "Core/PowerPC/Gekko.h"
#include "Core/PowerPC/JitInterface.h"
#include "Core/PowerPC/PPCSymbolDB.h"
@@ -41,7 +43,6 @@
#include "Core/PowerPC/PowerPC.h"
#include "DolphinWX/Debugger/BreakpointWindow.h"
#include "DolphinWX/Debugger/CodeView.h"
-#include "DolphinWX/Debugger/CodeWindow.h"
#include "DolphinWX/Debugger/DebuggerUIUtil.h"
#include "DolphinWX/Debugger/JitWindow.h"
#include "DolphinWX/Debugger/MemoryWindow.h"