From: MaikStohn Date: Thu, 3 May 2012 12:15:46 +0000 (+0200) Subject: delete obsolete and wrong code X-Git-Tag: iwj-success-2012-07-29~24^2~9 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=060b38de5c72dd0a98e222f8d7f5e000f7cc6fdf;p=marlin.git delete obsolete and wrong code "i" runs from 0 to 4 but "add_homeing" array size is 3 only. On the other hand the calculated value gets overwritten by either one of the if choice. --- diff --git a/Marlin/Marlin.pde b/Marlin/Marlin.pde index 0164a76..2facb94 100644 --- a/Marlin/Marlin.pde +++ b/Marlin/Marlin.pde @@ -687,7 +687,6 @@ void process_commands() st_synchronize(); for(int8_t i=0; i < NUM_AXIS; i++) { if(code_seen(axis_codes[i])) { - current_position[i] = code_value()+add_homeing[i]; if(i == E_AXIS) { current_position[i] = code_value(); plan_set_e_position(current_position[E_AXIS]);