Ver código fonte

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

Fix compile error intruduced with M109 modification
Giuliano Zaro 6 anos atrás
pai
commit
70e7a465d8
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      Marlin/src/gcode/temperature/M104_M109.cpp

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

90
   #endif
90
   #endif
91
 
91
 
92
   const bool no_wait_for_cooling = parser.seenval('S'),
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
   if (set_temp) {
94
   if (set_temp) {
95
     const int16_t temp = parser.value_celsius();
95
     const int16_t temp = parser.value_celsius();
96
     thermalManager.setTargetHotend(temp, target_extruder);
96
     thermalManager.setTargetHotend(temp, target_extruder);

Carregando…
Cancelar
Salvar