♻️ Bilinear refactor followup (#24009)

Followup to #23868
This commit is contained in:
Robby Candra 2022-04-10 07:39:04 +07:00 committed by GitHub
parent febf7e54fe
commit b19f745659
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1166,7 +1166,7 @@ FORCE_INLINE void segment_idle(millis_t &next_idle_ms) {
#if ENABLED(MESH_BED_LEVELING)
mbl.line_to_destination(scaled_fr_mm_s);
#elif ENABLED(AUTO_BED_LEVELING_BILINEAR)
bilinear_line_to_destination(scaled_fr_mm_s);
bbl.line_to_destination(scaled_fr_mm_s);
#endif
return true;
}