Skip to content

Commit

Permalink
Woops, fix logic
Browse files Browse the repository at this point in the history
  • Loading branch information
iXce authored and njprossi committed Jul 30, 2013
1 parent 376d8af commit 6c42a3a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Marlin/Marlin_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1219,7 +1219,6 @@ void process_commands()
SERIAL_PROTOCOLPGM(" /");
SERIAL_PROTOCOL_F(degTargetBed(),1);
#endif //TEMP_BED_PIN
#else
for (int8_t cur_extruder = 0; cur_extruder < EXTRUDERS; ++cur_extruder) {
SERIAL_PROTOCOLPGM(" T");
SERIAL_PROTOCOL(cur_extruder);
Expand All @@ -1228,6 +1227,7 @@ void process_commands()
SERIAL_PROTOCOLPGM(" /");
SERIAL_PROTOCOL_F(degTargetHotend(cur_extruder),1);
}
#else
SERIAL_ERROR_START;
SERIAL_ERRORLNPGM(MSG_ERR_NO_THERMISTORS);
#endif
Expand Down

0 comments on commit 6c42a3a

Please sign in to comment.