Skip to content

Commit 9f12b93

Browse files
committed
tweak
1 parent 7627248 commit 9f12b93

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

Marlin/src/module/motion.cpp

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,7 @@ xyze_pos_t destination; // {0}
125125
);
126126
// Transpose from [XYZ][HOTENDS] to [HOTENDS][XYZ]
127127
HOTEND_LOOP() LOOP_ABC(a) hotend_offset[e][a] = tmp[a][e];
128-
#if ENABLED(DUAL_X_CARRIAGE)
129-
hotend_offset[1].x = _MAX(X2_HOME_POS, X2_MAX_POS);
130-
#endif
128+
TERN_(DUAL_X_CARRIAGE, hotend_offset[1].x = _MAX(X2_HOME_POS, X2_MAX_POS));
131129
}
132130
#endif
133131

0 commit comments

Comments
 (0)