Commit 6bbb3e37 authored by MagoKimbra's avatar MagoKimbra

Fix M117 non text

parent a8e1e08b
...@@ -6134,7 +6134,7 @@ void process_next_command() { ...@@ -6134,7 +6134,7 @@ void process_next_command() {
// Args pointer optimizes code_seen, especially those taking XYZEF // Args pointer optimizes code_seen, especially those taking XYZEF
// This wastes a little cpu on commands that expect no arguments. // This wastes a little cpu on commands that expect no arguments.
current_command_args = current_command; current_command_args = current_command;
while (*current_command_args != ' ') ++current_command_args; while (*current_command_args && *current_command_args != ' ') ++current_command_args;
while (*current_command_args == ' ') ++current_command_args; while (*current_command_args == ' ') ++current_command_args;
// Interpret the code int // Interpret the code int
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment