summaryrefslogtreecommitdiffstats
path: root/src/core/gdbstub
diff options
context:
space:
mode:
authorDimitri A <DimitriPilot3@users.noreply.github.com>2019-03-08 06:09:06 +0100
committerfearlessTobi <thm.frey@gmail.com>2019-03-15 16:31:06 +0100
commit0e7ad1c367d160ea9157a141e64bbc3dcc0420bb (patch)
tree8559b52ac7c8275b2cd8a742785041fa45af95e0 /src/core/gdbstub
parentMerge pull request #2233 from ReinUsesLisp/morton-cleanup (diff)
downloadyuzu-0e7ad1c367d160ea9157a141e64bbc3dcc0420bb.tar
yuzu-0e7ad1c367d160ea9157a141e64bbc3dcc0420bb.tar.gz
yuzu-0e7ad1c367d160ea9157a141e64bbc3dcc0420bb.tar.bz2
yuzu-0e7ad1c367d160ea9157a141e64bbc3dcc0420bb.tar.lz
yuzu-0e7ad1c367d160ea9157a141e64bbc3dcc0420bb.tar.xz
yuzu-0e7ad1c367d160ea9157a141e64bbc3dcc0420bb.tar.zst
yuzu-0e7ad1c367d160ea9157a141e64bbc3dcc0420bb.zip
Diffstat (limited to 'src/core/gdbstub')
-rw-r--r--src/core/gdbstub/gdbstub.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/gdbstub/gdbstub.cpp b/src/core/gdbstub/gdbstub.cpp
index dafb32aae..afa812598 100644
--- a/src/core/gdbstub/gdbstub.cpp
+++ b/src/core/gdbstub/gdbstub.cpp
@@ -1030,7 +1030,7 @@ static void Step() {
/// Tell the CPU if we hit a memory breakpoint.
bool IsMemoryBreak() {
- if (IsConnected()) {
+ if (!IsConnected()) {
return false;
}