Merge pull request #9524 from InusualZ/master

Debugger: Fix issue were loaded memory breakpoints were not being triggered (break)
This commit is contained in:
Léo Lam 2021-02-21 15:49:24 +01:00 committed by GitHub
commit 1fe0953bd5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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());
}