From 9c784ca8ab47e564b3a60ac9d5a10ff361197c2e Mon Sep 17 00:00:00 2001 From: aldelaro5 Date: Mon, 27 Dec 2021 21:08:51 -0500 Subject: [PATCH] GDB Stub: correctly define the breakpoint type values Read only and Write only were reversed, now they are properly defined. --- Source/Core/Core/PowerPC/GDBStub.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/PowerPC/GDBStub.cpp b/Source/Core/Core/PowerPC/GDBStub.cpp index 3aff4b31c2..9af312c6fa 100644 --- a/Source/Core/Core/PowerPC/GDBStub.cpp +++ b/Source/Core/Core/PowerPC/GDBStub.cpp @@ -53,8 +53,8 @@ enum class BreakpointType { ExecuteSoft = 0, ExecuteHard, - Read, Write, + Read, Access, };