Skip to content

Commit

Permalink
Merge pull request #2142 from thinkyhead/fix_command_parser_M110
Browse files Browse the repository at this point in the history
No need for +1 on initial seen_pointer
  • Loading branch information
thinkyhead committed May 22, 2015
2 parents 8cba3bd + 15a2351 commit f4584c5
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 @@ -5220,7 +5220,7 @@ void process_next_command() {
while (*current_command_args == ' ') ++current_command_args;

// Interpret the code int
seen_pointer = current_command + 1;
seen_pointer = current_command;
codenum = code_value_short();

// Handle a known G, M, or T
Expand Down

0 comments on commit f4584c5

Please sign in to comment.