Skip to content

Commit

Permalink
Update documentation for command condition
Browse files Browse the repository at this point in the history
  • Loading branch information
mrexodia committed Jun 9, 2023
1 parent 4646da6 commit 1df823a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion introduction/ConditionalBreakpoint.md
Expand Up @@ -13,7 +13,7 @@ When a breakpoint is hit, x64dbg will do the following things:
- If *fast resume* is set and *break condition* evaluated to `0`:
- Resume execution of the debuggee (skip the next steps). This will also skip executing plugin callbacks and GUI updates.
- If *log condition* is set, evaluate the [expression](./Expressions.rst) (defaults to `1`);
- If *command condition* is set, evaluate the [expression](./Expressions.rst) (defaults to *break condition*);
- If *command condition* is set, evaluate the [expression](./Expressions.rst) (defaults to `1`);
- If *break condition* evaluated to `1` (or any value other than '0'):
- Print the standard log message; (if [the breakpoint is set to be silent](../commands/conditional-breakpoint-control/SetBreakpointSilent.md), standard log message is supressed.)
- Execute plugin callbacks.
Expand Down

0 comments on commit 1df823a

Please sign in to comment.