From 060b38de5c72dd0a98e222f8d7f5e000f7cc6fdf Mon Sep 17 00:00:00 2001
From: MaikStohn <git@stohn.de>
Date: Thu, 3 May 2012 14:15:46 +0200
Subject: [PATCH] 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.
---
 Marlin/Marlin.pde | 1 -
 1 file changed, 1 deletion(-)

diff --git a/Marlin/Marlin.pde b/Marlin/Marlin.pde
index 0164a761ad..2facb9429c 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]);