Commit 22c55024 authored by MagoKimbra's avatar MagoKimbra

Fix Make_move

parent fecbb554
...@@ -6732,17 +6732,15 @@ inline void gcode_T(uint8_t tmp_extruder) { ...@@ -6732,17 +6732,15 @@ inline void gcode_T(uint8_t tmp_extruder) {
else { else {
target_extruder = tmp_extruder; target_extruder = tmp_extruder;
#if HOTENDS > 1 #if ENABLED(DONDOLO)
#if ENABLED(DONDOLO) bool make_move = true;
bool make_move = true; #else
#else bool make_move = false;
bool make_move = false;
#endif
#endif #endif
if (code_seen('F')) { if (code_seen('F')) {
#if HOTENDS > 1 #if EXTRUDERS > 1
make_move = true; make_move = true;
#endif #endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment