Browse Source

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

Fix compile error intruduced with M109 modification
pull/1/head
Giuliano Zaro 6 years ago
committed by Scott Lahteine
parent
commit
70e7a465d8
  1. 2
      Marlin/src/gcode/temperature/M104_M109.cpp

2
Marlin/src/gcode/temperature/M104_M109.cpp

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

Loading…
Cancel
Save