瀏覽代碼

[2.0.x] Fix compile error (#11951)

Fix compile error intruduced with M109 modification
Giuliano Zaro 6 年之前
父節點
當前提交
70e7a465d8
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      Marlin/src/gcode/temperature/M104_M109.cpp

+ 1
- 1
Marlin/src/gcode/temperature/M104_M109.cpp 查看文件

@@ -90,7 +90,7 @@ void GcodeSuite::M109() {
90 90
   #endif
91 91
 
92 92
   const bool no_wait_for_cooling = parser.seenval('S'),
93
-             set_temp = no_wait_for_cooling || parser.seenval('R')
93
+             set_temp = no_wait_for_cooling || parser.seenval('R');
94 94
   if (set_temp) {
95 95
     const int16_t temp = parser.value_celsius();
96 96
     thermalManager.setTargetHotend(temp, target_extruder);

Loading…
取消
儲存