소스 검색

Keep destination updated in an aborted plan as well

When aborting the plan destination is updated anyway to reflect the latest
position. There's no use in this additional check.
Yuri D'Elia 5 년 전
부모
커밋
8448b8d413
1개의 변경된 파일0개의 추가작업 그리고 2개의 파일을 삭제
  1. 0 2
      Firmware/Marlin_main.cpp

+ 0 - 2
Firmware/Marlin_main.cpp

@@ -8415,8 +8415,6 @@ void prepare_move()
      plan_buffer_line(destination[X_AXIS], destination[Y_AXIS], destination[Z_AXIS], destination[E_AXIS], feedrate*feedmultiply*(1./(60.f*100.f)), active_extruder);
 #endif
   }
-  if (waiting_inside_plan_buffer_line_print_aborted)
-      return;
 
   set_current_to_destination();
 }