Skip to content

Commit

Permalink
Bugfix time calculation
Browse files Browse the repository at this point in the history
  • Loading branch information
im-pro-at committed Jan 4, 2017
1 parent 25c570f commit 39a769b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cnc/gcode/controller/CNCCommand.java
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,7 @@ public State calcCommand(Calchelper c)

//Take A into account
double da;
if(apmm==0 || type!=Type.G1){
if(apmm==0 || type==Type.G0){
da=move.getA()/DatabaseV2.AFEEDRATE.getsaved()*60;
}
else{
Expand Down

0 comments on commit 39a769b

Please # to comment.