Browse Source

Merge pull request #2142 from thinkyhead/fix_command_parser_M110

No need for +1 on initial seen_pointer
Scott Lahteine 10 years ago
parent
commit
f4584c51c5
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

5220
   while (*current_command_args == ' ') ++current_command_args;
5220
   while (*current_command_args == ' ') ++current_command_args;
5221
 
5221
 
5222
   // Interpret the code int
5222
   // Interpret the code int
5223
-  seen_pointer = current_command + 1;
5223
+  seen_pointer = current_command;
5224
   codenum = code_value_short();
5224
   codenum = code_value_short();
5225
 
5225
 
5226
   // Handle a known G, M, or T
5226
   // Handle a known G, M, or T

Loading…
Cancel
Save