Browse Source

Merge pull request #3001 from AlwaysTinkering/RCBugFix

Rc bug fix - Fix for issue #2931
Scott Lahteine 9 years ago
parent
commit
6e64895c30
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

@@ -2322,7 +2322,7 @@ inline void gcode_G28() {
2322 2322
           }
2323 2323
         #endif
2324 2324
 
2325
-      #elif DISABLED(Z_SAFE_HOMING) && defined(Z_RAISE_BEFORE_HOMING) && Z_RAISE_BEFORE_HOMING > 0
2325
+      #elif defined(Z_RAISE_BEFORE_HOMING) && Z_RAISE_BEFORE_HOMING > 0
2326 2326
 
2327 2327
         // Raise Z before homing any other axes
2328 2328
         // (Does this need to be "negative home direction?" Why not just use Z_RAISE_BEFORE_HOMING?)

Loading…
Cancel
Save