Commit c50b9d93 authored by MagoKimbra's avatar MagoKimbra

Fix M600

parent 8ccd9f2b
......@@ -5213,7 +5213,7 @@ void process_commands()
//lift Z
if(code_seen('Z'))
{
target[Z_AXIS]+= code_value();
target[Z_AXIS]= code_value();
}
else
{
......@@ -5232,7 +5232,7 @@ void process_commands()
//move xy
if(code_seen('X'))
{
target[X_AXIS]+= code_value();
target[X_AXIS]= code_value();
}
else
{
......
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