summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinWX/Debugger/BreakpointView.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/BreakpointView.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/BreakpointView.cpp')
-rw-r--r--Source/Core/DolphinWX/Debugger/BreakpointView.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/Source/Core/DolphinWX/Debugger/BreakpointView.cpp b/Source/Core/DolphinWX/Debugger/BreakpointView.cpp
index 7a2ae27270..f8c6266849 100644
--- a/Source/Core/DolphinWX/Debugger/BreakpointView.cpp
+++ b/Source/Core/DolphinWX/Debugger/BreakpointView.cpp
@@ -2,17 +2,18 @@
// Licensed under GPLv2+
// Refer to the license.txt file included.
+#include "DolphinWX/Debugger/BreakpointView.h"
+
#include <cstddef>
#include <cstdio>
#include <wx/listctrl.h>
-#include "Common/BreakPoints.h"
#include "Common/CommonTypes.h"
#include "Common/StringUtil.h"
+#include "Core/PowerPC/BreakPoints.h"
#include "Core/PowerPC/PPCSymbolDB.h"
#include "Core/PowerPC/PowerPC.h"
-#include "DolphinWX/Debugger/BreakpointView.h"
#include "DolphinWX/Debugger/DebuggerUIUtil.h"
#include "DolphinWX/WxUtils.h"