mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00:00
GDB Stub: correctly define the breakpoint type values
Read only and Write only were reversed, now they are properly defined.
This commit is contained in:
parent
70b7e16d6c
commit
9c784ca8ab
1 changed files with 1 additions and 1 deletions
|
@ -53,8 +53,8 @@ enum class BreakpointType
|
||||||
{
|
{
|
||||||
ExecuteSoft = 0,
|
ExecuteSoft = 0,
|
||||||
ExecuteHard,
|
ExecuteHard,
|
||||||
Read,
|
|
||||||
Write,
|
Write,
|
||||||
|
Read,
|
||||||
Access,
|
Access,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue