Tweak manual move eindex arg

This commit is contained in:
Scott Lahteine 2018-03-08 16:26:11 -06:00
parent 31980f01ba
commit 282170a259

View File

@ -2892,7 +2892,7 @@ void kill_screen(const char* lcd_msg) {
*/
inline void manual_move_to_current(AxisEnum axis
#if E_MANUAL > 1
, int8_t eindex=-1
, const int8_t eindex=-1
#endif
) {
#if ENABLED(DUAL_X_CARRIAGE) || E_MANUAL > 1
@ -2992,7 +2992,7 @@ void kill_screen(const char* lcd_msg) {
void lcd_move_z() { _lcd_move_xyz(PSTR(MSG_MOVE_Z), Z_AXIS); }
void _lcd_move_e(
#if E_MANUAL > 1
int8_t eindex=-1
const int8_t eindex=-1
#endif
) {
if (use_click()) { return lcd_goto_previous_menu(); }