Explorar el Código

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

Fix compile error intruduced with M109 modification
Giuliano Zaro hace 6 años
padre
commit
70e7a465d8
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      Marlin/src/gcode/temperature/M104_M109.cpp

+ 1
- 1
Marlin/src/gcode/temperature/M104_M109.cpp Ver fichero

@@ -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…
Cancelar
Guardar