Skip to content

Commit

Permalink
🐛 Fix PAUSE_PROBE_DEPLOY_WHEN_TRIGGERED
Browse files Browse the repository at this point in the history
Fixes #22295. Regression from #20241.
  • Loading branch information
thinkyhead committed Jul 30, 2021
1 parent 6eae68c commit 6efd728
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/src/module/probe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ FORCE_INLINE void probe_specific_action(const bool deploy) {
#if ENABLED(PAUSE_BEFORE_DEPLOY_STOW)
do {
#if ENABLED(PAUSE_PROBE_DEPLOY_WHEN_TRIGGERED)
if (deploy == PROBE_TRIGGERED()) break;
if (deploy != PROBE_TRIGGERED()) break;
#endif

BUZZ(100, 659);
Expand Down

0 comments on commit 6efd728

Please sign in to comment.