From 1df823adacfacf4a8b0949b6bc4a6622c1ddb705 Mon Sep 17 00:00:00 2001 From: Duncan Ogilvie Date: Fri, 9 Jun 2023 23:55:06 +0200 Subject: [PATCH] Update documentation for command condition --- introduction/ConditionalBreakpoint.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/introduction/ConditionalBreakpoint.md b/introduction/ConditionalBreakpoint.md index 2002086..0b25221 100644 --- a/introduction/ConditionalBreakpoint.md +++ b/introduction/ConditionalBreakpoint.md @@ -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.