Merge pull request #3001 from AlwaysTinkering/RCBugFix

Rc bug fix - Fix for issue #2931
This commit is contained in:
Scott Lahteine 2016-03-06 00:20:29 -08:00
commit 6e64895c30

View file

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