Skip to content

Commit bcc31f6

Browse files
committed
🐛 Fix PAUSE_PROBE_DEPLOY_WHEN_TRIGGERED
Fixes #22295. Regression from #20241.
1 parent f8f68f9 commit bcc31f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Marlin/src/module/probe.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ FORCE_INLINE void probe_specific_action(const bool deploy) {
287287
#if ENABLED(PAUSE_BEFORE_DEPLOY_STOW)
288288
do {
289289
#if ENABLED(PAUSE_PROBE_DEPLOY_WHEN_TRIGGERED)
290-
if (deploy == PROBE_TRIGGERED()) break;
290+
if (deploy != PROBE_TRIGGERED()) break;
291291
#endif
292292

293293
BUZZ(100, 659);

0 commit comments

Comments
 (0)