Merge pull request #3187 from AnHardt/target_extruder_number

Fix extrudernum in MSG_INVALID_EXTRUDER
This commit is contained in:
Scott Lahteine 2016-03-20 17:15:22 -07:00
commit 10caee2b7c

View File

@ -7454,7 +7454,7 @@ bool setTargetedHotend(int code) {
SERIAL_CHAR('M');
SERIAL_ECHO(code);
SERIAL_ECHOPGM(" " MSG_INVALID_EXTRUDER " ");
SERIAL_ECHOLN(target_extruder);
SERIAL_ECHOLN((int)target_extruder);
return true;
}
}