Correct bracketing for COREXY-XZ

This commit is contained in:
AnHardt 2015-07-23 17:45:28 +02:00 committed by Richard Wackerbarth
parent 469843427d
commit 27d7d2ccab

View File

@ -374,7 +374,7 @@ inline void update_endstops() {
UPDATE_ENDSTOP(Y, MAX); UPDATE_ENDSTOP(Y, MAX);
#endif #endif
} }
#if defined(COREXY) || defined(COREXZ) #if defined(COREXY)
} }
#endif #endif
@ -459,6 +459,9 @@ inline void update_endstops() {
} }
#endif #endif
} }
#if defined(COREXZ)
}
#endif
old_endstop_bits = current_endstop_bits; old_endstop_bits = current_endstop_bits;
} }