Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #9524 from InusualZ/master
Debugger: Fix issue were loaded memory breakpoints were not being triggered (break)
  • Loading branch information
leoetlino committed Feb 21, 2021
2 parents c040b01 + caf140d commit 1fe0953
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Core/Core/PowerPC/BreakPoints.cpp
Expand Up @@ -159,7 +159,7 @@ MemChecks::TMemChecksStr MemChecks::GetStrings() const
ss << " " << (mc.is_ranged ? mc.end_address : mc.start_address) << " "
<< (mc.is_ranged ? "n" : "") << (mc.is_break_on_read ? "r" : "")
<< (mc.is_break_on_write ? "w" : "") << (mc.log_on_hit ? "l" : "")
<< (mc.break_on_hit ? "p" : "");
<< (mc.break_on_hit ? "b" : "");
mc_strings.push_back(ss.str());
}

Expand Down

0 comments on commit 1fe0953

Please sign in to comment.