Added my attempt at an Intermediate level Debugger Usage Guide to the help document, and fixed a small issue with 'Forbid' breakpoints where even if they were disabled, they would still have the same effect as when enabled. These can now be turned off without deleting them.

This commit is contained in:
ugetab 2010-04-22 03:46:56 +00:00
parent 5ada522ac2
commit 80f6049f2e
2 changed files with 1 additions and 1 deletions

View File

@ -469,7 +469,7 @@ void BreakHit(bool force = false) {
//check to see whether we fall in any forbid zone
for (int i = 0; i < numWPs; i++) {
watchpointinfo& wp = watchpoint[i];
if(!(wp.flags & WP_F))
if(!(wp.flags & WP_F) || !(wp.flags & WP_E))
continue;
if (condition(&wp))

Binary file not shown.