浏览代码

if !HAS_MESH we still need to do some motion! (#8328)

* if !HAS_MESH we still need to do some motion!

Thank You MagoKimbra !

* Ooops....   need #else and not #elif
Roxy-3D 7 年前
父节点
当前提交
1c6e83c137
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 5 次插入1 次删除
  1. 5
    1
      Marlin/src/module/motion.cpp

+ 5
- 1
Marlin/src/module/motion.cpp 查看文件

658
             #endif
658
             #endif
659
             return true;
659
             return true;
660
           }
660
           }
661
-          else
661
+          else {
662
             line_to_destination();
662
             line_to_destination();
663
+            return false;
664
+          }
663
         #endif
665
         #endif
666
+      #else
667
+        line_to_destination();  
664
       #endif // HAS_MESH
668
       #endif // HAS_MESH
665
 
669
 
666
     return false;
670
     return false;

正在加载...
取消
保存