try to make E behave

This commit is contained in:
Michael Moon 2011-02-12 22:20:18 +11:00
parent a6e8850ae3
commit 79674da51b
1 changed files with 2 additions and 1 deletions

View File

@ -361,8 +361,9 @@ void gcode_parse_char(uint8_t c) {
if (next_target.option_relative) { if (next_target.option_relative) {
next_target.target.X = next_target.target.Y = next_target.target.Z = 0; next_target.target.X = next_target.target.Y = next_target.target.Z = 0;
next_target.target.E = 0;
} }
// E always relative
next_target.target.E = 0;
} }
} }