Merge pull request #2190 from thinkyhead/new_parser_m33

Update M33 for new gcode parser
This commit is contained in:
Scott Lahteine 2015-05-28 16:17:32 -07:00
commit eecabf0b00

View File

@ -3065,10 +3065,7 @@ inline void gcode_M31() {
* /Miscellaneous/Armchair/Armchair.gcode
*/
inline void gcode_M33() {
char *args = strchr_pointer + 4;
while (*args == ' ') ++args;
clear_asterisk(args);
card.printLongPath(args);
card.printLongPath(current_command_args);
}
#endif